copyWith method

LabeledPricePart copyWith({
  1. String? label,
  2. int? amount,
})

Implementation

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