Input$OrderProductPriceInput constructor

Input$OrderProductPriceInput({
  1. double? net,
  2. double? gross,
  3. double? unitNet,
  4. double? unitGross,
})

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,
    });