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