isUserVideoMuted method
This method is used to check if the user video is muted.
Implementation
@override
Future<bool?> isUserVideoMuted([String? userJid]) async {
bool? res;
try {
res = await mirrorFlyCallMethodChannel
.invokeMethod('isUserVideoMuted', {"userJid": userJid});
LogMessage.d('isUserVideoMuted', '$res');
return res;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
rethrow;
} on Exception catch (error) {
LogMessage.d("Exception ", " $error");
rethrow;
}
}