airportsList abstract method

  1. @Get(path: '/airports')
Future<Response<AirportsGet$Response>> airportsList({
  1. @Query('zip') String? zip,
  2. @Query('limit') int? limit,
  3. @Query('offset') int? offset,
})

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

Implementation

@Get(path: '/airports')
Future<chopper.Response<AirportsGet$Response>> airportsList(
    {@Query('zip') String? zip,
    @Query('limit') int? limit,
    @Query('offset') int? offset});