crewCreate abstract method

  1. @Post(path: '/crew')
Future<Response<Crew>> crewCreate({
  1. @Body() @required Crew? data,
})

@param data

Implementation

@Post(path: '/crew')
Future<chopper.Response<Crew>> crewCreate({@Body() @required Crew? data});