tagsList abstract method

  1. @Get(path: '/tags')
Future<Response<TagsGet$Response>> tagsList({
  1. @Query('limit') int? limit,
  2. @Query('offset') int? offset,
})

@param limit Number of results to return per page. @param offset The initial index from which to return the results.

Implementation

@Get(path: '/tags')
Future<chopper.Response<TagsGet$Response>> tagsList(
    {@Query('limit') int? limit, @Query('offset') int? offset});