VolumeSettings.fixed constructor
const
VolumeSettings.fixed({})
Constructs VolumeSettings with fixed volume level.
Implementation
const VolumeSettings.fixed({
double? volume,
bool volumeEnforced = false,
bool showSystemUI = true,
}) : this._(
volume: volume,
volumeEnforced: volumeEnforced,
showSystemUI: showSystemUI,
);