copyWith method

  1. @override
PushMessageContentInvoice copyWith({
  1. String? price,
  2. bool? isPinned,
})
override

Implementation

@override
PushMessageContentInvoice copyWith({
  String? price,
  bool? isPinned,
}) =>
    PushMessageContentInvoice(
      price: price ?? this.price,
      isPinned: isPinned ?? this.isPinned,
    );