getRegisteredUsers method
Implementation
@override
Future<dynamic> getRegisteredUsers(bool server) async {
//filteredContactList
dynamic response;
try {
response = await mirrorFlyMethodChannel
.invokeMethod('getRegisteredUsers', {"server": server});
debugPrint("getRegisteredUsers $server ==> $response");
return response;
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}