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