Input$ProductPriceListInput constructor

Input$ProductPriceListInput({
  1. required String price,
  2. String? value,
})

Implementation

factory Input$ProductPriceListInput({
  required String price,
  String? value,
}) =>
    Input$ProductPriceListInput._({
      r'price': price,
      if (value != null) r'value': value,
    });