venueContactsDelete abstract method

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

@param id The LASSO unique identifier for this resource.

Implementation

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