AI-generated Key Takeaways
- 
          VolumeEventData provides data about changes in receiver volume or mute status. 
- 
          The VolumeEventData constructor takes the current volume and mute status as parameters. 
- 
          Key properties include isMute(a boolean indicating if the device is muted) andvolume(a number representing the current volume between 0 and 1).
- 
          Both the isMuteandvolumeproperties can potentially be null.
cast.framework. VolumeEventData
            Receiver volume or mute changed event data.
Constructor
VolumeEventData
new VolumeEventData(volume, isMute)
| Parameter | |
|---|---|
| volume | number Current volume in range 0 to 1 (1 is max volume). Value may be null. | 
| isMute | boolean True if device is muted. Value may be null. | 
Properties
isMute
nullable boolean
True if device is muted.
volume
nullable number
Current volume in range 0 to 1 (1 is max volume).