getTags static method

Future<PagingResult<Tag>> getTags(
  1. PagingQuery<TagsQuery> pagingQuery
)

Get tags matching query.

pagingQuery Query parameters.

Implementation

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