isMuted method

Future<bool> isMuted()

Returns the current mute state of the local participant.

Implementation

Future<bool> isMuted() async {
  return Future.value(await _methodChannel.invokeMethod<bool>("isMuted"));
}