getRegisteredUserList static method
- @Deprecated('Instead of use Mirrorfly.getRegisteredUsers()')
- 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);
}