getMeetUsername static method
Retrieves the meeting username for a given user JID.
This method fetches the username used in meetings for the specified user JID.
Parameters:
userJid
- The JID (Jabber ID) of the user whose meeting username is to be retrieved.
Returns: A Future<String> that completes with the meeting username.
Implementation
static Future<String> getMeetUsername({required String userJid}) {
return FlyChatFlutterPlatform.instance.getMeetUsername(userJid);
}