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