Input$ReduciblePriceInput constructor

Input$ReduciblePriceInput({
  1. double? beforeReduction,
  2. double? afterReduction,
})

Implementation

factory Input$ReduciblePriceInput({
  double? beforeReduction,
  double? afterReduction,
}) =>
    Input$ReduciblePriceInput._({
      if (beforeReduction != null) r'beforeReduction': beforeReduction,
      if (afterReduction != null) r'afterReduction': afterReduction,
    });