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