update method
Implementation
Future<ResponseItemDTO> update(
{String? id, OrderRefundBody? refundBody}) async {
return await _repository!.update(
id: id,
refundBody: refundBody,
);
}
Future<ResponseItemDTO> update(
{String? id, OrderRefundBody? refundBody}) async {
return await _repository!.update(
id: id,
refundBody: refundBody,
);
}