venueNotesRead abstract method

  1. @Get(path: '/venue_notes/{id}')
Future<Response<VenueNote>> venueNotesRead({
  1. @Path('id') @required int? id,
})

@param id The LASSO unique identifier for this resource.

Implementation

@Get(path: '/venue_notes/{id}')
Future<chopper.Response<VenueNote>> venueNotesRead(
    {@Path('id') @required int? id});