Input$ReduciblePriceInput constructor

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

Implementation

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