Input$BarcodePricesInput constructor

Input$BarcodePricesInput({
  1. String? price,
  2. String? currency,
})

Implementation

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