Input$OrderProductPriceInput constructor
Implementation
factory Input$OrderProductPriceInput({
double? net,
double? gross,
double? unitNet,
double? unitGross,
}) =>
Input$OrderProductPriceInput._({
if (net != null) r'net': net,
if (gross != null) r'gross': gross,
if (unitNet != null) r'unitNet': unitNet,
if (unitGross != null) r'unitGross': unitGross,
});