setMicrophoneVolume function

Future<void> setMicrophoneVolume(
  1. int level
)

Sets the microphone system volume according to the specified level in percents.

Implementation

Future<void> setMicrophoneVolume(int level) async {
  await api!.setMicrophoneVolume(level: level);
}