eventGroupsDelete abstract method

  1. @Delete.new(path: '/event_groups/{id}')
Future<Response> eventGroupsDelete({
  1. @Path.new('id') @required int? id,
})

@param id The LASSO unique identifier for this resource.

Implementation

@Delete(path: '/event_groups/{id}')
Future<chopper.Response> eventGroupsDelete({@Path('id') @required int? id});