isUserVideoMuted method

  1. @override
Future<bool?> isUserVideoMuted([
  1. String? userJid
])
override

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;
  }
}