getRegisteredUserList static method

  1. @Deprecated('Instead of use Mirrorfly.getRegisteredUsers()')
Future<String?> getRegisteredUserList({
  1. required bool fetchFromServer,
})

A method used to get the list of registered users from the Mirrorfly platform.

Implementation

@Deprecated('Instead of use Mirrorfly.getRegisteredUsers()')
static Future<String?> getRegisteredUserList(
    {required bool fetchFromServer}) {
  return FlyChatFlutterPlatform.instance
      .getRegisteredUserList(server: fetchFromServer);
}