mute method

Future<bool?> mute()

Implementation

Future<bool?> mute() async {
  return await _channel.invokeMethod(
    'mute',
  );
}