Input$TotalPriceInput constructor

Input$TotalPriceInput({
  1. double? net,
  2. double? gross,
})

Implementation

factory Input$TotalPriceInput({
  double? net,
  double? gross,
}) =>
    Input$TotalPriceInput._({
      if (net != null) r'net': net,
      if (gross != null) r'gross': gross,
    });