airportsRead abstract method
- @Get.new(path: '/airports/{id}')
- @Path.new('id') @required String? id,
@param id The LASSO unique identifier for the airport resource.
Implementation
@Get(path: '/airports/{id}')
Future<chopper.Response<Airport>> airportsRead(
{@Path('id') @required String? id});