copyWith method
Implementation
PaymentReceiptTypeRegular copyWith({
int? paymentProviderUserId,
Invoice? invoice,
OrderInfo? orderInfo,
ShippingOption? shippingOption,
String? credentialsTitle,
int? tipAmount,
}) => PaymentReceiptTypeRegular(
paymentProviderUserId: paymentProviderUserId ?? this.paymentProviderUserId,
invoice: invoice ?? this.invoice,
orderInfo: orderInfo ?? this.orderInfo,
shippingOption: shippingOption ?? this.shippingOption,
credentialsTitle: credentialsTitle ?? this.credentialsTitle,
tipAmount: tipAmount ?? this.tipAmount,
);