eventsRead abstract method

  1. @Get(path: '/events/{id}')
Future<Response<Event>> eventsRead({
  1. @Path('id') @required int? id,
})

@param id The LASSO unique identifier for this resource.

Implementation

@Get(path: '/events/{id}')
Future<chopper.Response<Event>> eventsRead({@Path('id') @required int? id});