crewNotesRead abstract method

  1. @Get(path: '/crew_notes/{id}')
Future<Response<CrewNote>> crewNotesRead({
  1. @Path('id') @required int? id,
})

@param id The LASSO unique identifier for this resource.

Implementation

@Get(path: '/crew_notes/{id}')
Future<chopper.Response<CrewNote>> crewNotesRead(
    {@Path('id') @required int? id});