muteMic method

Future<void> muteMic(
  1. int callId,
  2. bool mute
)

Mute microphone for the specified call

Implementation

Future<void> muteMic(int callId, bool mute) {
  return _platform.muteMic(callId, mute);
}