mute method

Future<void> mute(
  1. bool mute
)

Mute the current user based on mute.

Implementation

Future<void> mute(bool mute) async {
  await _channel.invokeMethod('mute', {"mute": mute});
  muted = mute;
}