muteVideo method
This method is used to mute the video.
Implementation
@override
Future<void> muteVideo(
bool status, Function(FlyResponse response)? callback) async {
bool? res;
try {
res = await mirrorFlyCallMethodChannel
.invokeMethod('muteVideo', {"muteVideo": status});
LogMessage.d('muteVideo', '$res');
callback?.call(FlyResponse(true, FlyConstants.empty, FlyConstants.empty));
// return res;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
FlyException(e.code, e.message, e.details)));
} on Exception catch (e) {
LogMessage.d("Exception ", " $e");
callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
FlyException(FlyErrorCode.unHandle, FlyErrorMessage.unHandle, e)));
}
}