create method

Future<ResponseItemDTO> create({
  1. StoreShipmentMethodBody? shipmentMethod,
})

Implementation

Future<ResponseItemDTO> create(
    {StoreShipmentMethodBody? shipmentMethod}) async {
  return await _repository!.create(shipmentMethod: shipmentMethod);
}