scheduleEntriesDelete abstract method

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

@param id The LASSO unique identifier for this resource.

Implementation

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