copyWith method
Implementation
ShippingOption copyWith({
String? id,
String? title,
List<LabeledPricePart>? priceParts,
}) => ShippingOption(
id: id ?? this.id,
title: title ?? this.title,
priceParts: priceParts ?? this.priceParts,
);
ShippingOption copyWith({
String? id,
String? title,
List<LabeledPricePart>? priceParts,
}) => ShippingOption(
id: id ?? this.id,
title: title ?? this.title,
priceParts: priceParts ?? this.priceParts,
);