ShippingOption constructor
ShippingOption({
- required String id,
- required String title,
- required List<
LabeledPrice> prices,
Implementation
ShippingOption({
required this.id,
required this.title,
required this.prices,
});