voiceVolume property

int get voiceVolume

Get voice volume

Returns

  • The volume used for voice

Implementation

static int get voiceVolume {
  final OperationResult result =
      staticMethod('SoundService', 'getVoiceVolume');
  return result['result'];
}
set voiceVolume (int volume)

Set voice volume

Parameters

  • IN volume Volume

Implementation

static set voiceVolume(int volume) {
  staticMethod('SoundService', 'setVoiceVolume', args: volume);
}