marketsList abstract method

  1. @Get(path: '/markets')
Future<Response<MarketsGet$Response>> marketsList({
  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: '/markets')
Future<chopper.Response<MarketsGet$Response>> marketsList(
    {@Query('limit') int? limit, @Query('offset') int? offset});