getMeetUsername static method

Future<String> getMeetUsername({
  1. required String userJid,
})

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