deleteSlotMapping method
override
Deletes the mapping with mappingId
.
Implementation
@override
Future<void> deleteSlotMapping({required String token, required int mappingId}) async {
log('Deleting slot mapping $mappingId');
await api.callFunction(
function: 'local_lbplanner_slots_delete_slot_filter',
body: {
'filterid': mappingId,
},
token: token,
);
}