copyWith method
Implementation
LabeledPricePart copyWith({String? label, int? amount}) => LabeledPricePart(
label: label ?? this.label,
amount: amount ?? this.amount,
);
LabeledPricePart copyWith({String? label, int? amount}) => LabeledPricePart(
label: label ?? this.label,
amount: amount ?? this.amount,
);