clientContactsDelete abstract method

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

@param id The LASSO unique identifier for this resource.

Implementation

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