getBlockedUsers static method

Future<PagingResult<User>> getBlockedUsers(
  1. PagingQuery<Encodable> query
)

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)));
}