multipleDelete method

Future<ResponseItemDTO> multipleDelete({
  1. String? id,
  2. ProductMultipleDeleteBody? body,
})

Implementation

Future<ResponseItemDTO> multipleDelete(
    {String? id, ProductMultipleDeleteBody? body}) async {
  return await _repository!.multipleDelete(
    id: id,
    body: body,
  );
}