update method

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

Implementation

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