copyWith method

ShippingOption copyWith({
  1. String? id,
  2. String? title,
  3. List<LabeledPricePart>? priceParts,
})

Implementation

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