isUserVideoMuted static method
Checks if the user's video is muted during a call.
This method asynchronously queries the platform to determine if the video
of the user identified by userJid
is muted during an ongoing call.
Returns a Future that completes with a bool value indicating whether
the user's video is muted (true
) or not (false
).
If userJid
is provided, the method checks the video mute status for
the specified user. If userJid
is null
, it checks the video mute status
for the current user.
Implementation
static Future<bool?> isUserVideoMuted({String? userJid}) async {
return FlyChatFlutterPlatform.instance.isUserVideoMuted(userJid);
}