voiceVolume property
Get voice volume
Returns
- The volume used for voice
Implementation
static int get voiceVolume {
final OperationResult result =
staticMethod('SoundService', 'getVoiceVolume');
return result['result'];
}
Set voice volume
Parameters
- IN volume Volume
Implementation
static set voiceVolume(int volume) {
staticMethod('SoundService', 'setVoiceVolume', args: volume);
}