muteAudio static method

Future<bool?> muteAudio(
  1. bool status
)

Used as a muteAudio class for Mirrorfly used to mute the Audio in the call returns the bool value

Implementation

static Future<bool?> muteAudio(bool status) async {
  return FlyChatFlutterPlatform.instance.muteAudio(status);
}