getReactions static method

Get reactions.

pagingQuery Query parameters.

Implementation

static Future<PagingResult<UserReactions>> getReactions(
    PagingQuery<ReactionsQuery> pagingQuery) {
  return NativeBridge.async(
          'Communities.getReactions', jsonEncode(pagingQuery.toJSON()))
      .then((result) => new PagingResult.fromJSON(jsonDecode(result),
          (Map<String, dynamic> raw) => UserReactions.fromJSON(raw)));
}