DeviceProperties constructor

DeviceProperties({
  1. int? level,
})

Implementation

DeviceProperties(
    {
    ///
    ///   The audio device's desired sound level. Defaults to the device's
    ///   current sound level.
    ///
    /// If used with audio input device, represents audio device gain.
    /// If used with audio output device, represents audio device volume.
    int? level})
    : _wrapped = $js.DeviceProperties(level: level);