mute method

Future<bool?> mute(
  1. bool isMute
)

Implementation

Future<bool?> mute(bool isMute) async {
  return _methodChannel
      .invokeMethod(MethodChannelEvent.mute, {'isMute': isMute});
}