muteVideo static method

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

Used as a muteVideo class for Mirrorfly used to mute the Video in the call returns the bool value

Implementation

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