eventCollectionsCreate abstract method

  1. @Post(path: '/event_collections')
Future<Response<EventCollection>> eventCollectionsCreate({
  1. @Body() @required EventCollection? data,
})

@param data

Implementation

@Post(path: '/event_collections')
Future<chopper.Response<EventCollection>> eventCollectionsCreate(
    {@Body() @required EventCollection? data});