crewSettingsRead abstract method

  1. @Get(path: '/crew_settings/{id}')
Future<Response<CrewSettings>> crewSettingsRead({
  1. @Path('id') @required int? id,
})

@param id The LASSO unique identifier for this resource.

Implementation

@Get(path: '/crew_settings/{id}')
Future<chopper.Response<CrewSettings>> crewSettingsRead(
    {@Path('id') @required int? id});