setVoiceCaptureVolume method

Future<void> setVoiceCaptureVolume(
  1. int volume
)

Set the mic voice volume

Parameters:

volume Volume. 1 is the normal volume. Value range: floating point number between [0,100]

Platform not supported:

  • web

Implementation

Future<void> setVoiceCaptureVolume(int volume) {
  return _channel.invokeMethod('setVoiceCaptureVolume', {"volume": volume});
}