update method

Future<ResponseItemDTO> update({
  1. String? id,
  2. OrderRefundBody? refundBody,
})

Implementation

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