getBlockedUsers static method
Implementation
static Future<PagingResult<User>> getBlockedUsers(PagingQuery query) {
return NativeBridge.async(
'Communities.getBlockedUsers', jsonEncode(query.toJSON()))
.then((result) => new PagingResult.fromJSON(jsonDecode(result),
(Map<String, dynamic> raw) => User.fromJSON(raw)));
}