venueNotesCreate abstract method
- @Post.new(path: '/venue_notes')
- @Body.new() @required VenueNote? data,
@param data
Implementation
@Post(path: '/venue_notes')
Future<chopper.Response<VenueNote>> venueNotesCreate(
{@Body() @required VenueNote? data});