ShippingOption constructor

ShippingOption({
  1. required String id,
  2. required String title,
  3. required List<LabeledPrice> prices,
})

Implementation

ShippingOption({
  required this.id,
  required this.title,
  required this.prices,
});