getInvitedUsersList static method

Future<List<String>> getInvitedUsersList()

Retrieves a list of invited users from the Mirrorfly platform asynchronously.

This static method calls the underlying platform-specific implementation to retrieve the list of invited users asynchronously.

Returns a Future that completes with a list of strings representing the invited users(JIDs) when the operation is successful.

Implementation

static Future<List<String>> getInvitedUsersList() async {
  return FlyChatFlutterPlatform.instance.getInvitedUsersList();
}