copyWith method
PaymentReceipt
copyWith({
- ProductInfo? productInfo,
- int? date,
- int? sellerBotUserId,
- PaymentReceiptType? type,
Implementation
PaymentReceipt copyWith({
ProductInfo? productInfo,
int? date,
int? sellerBotUserId,
PaymentReceiptType? type,
}) => PaymentReceipt(
productInfo: productInfo ?? this.productInfo,
date: date ?? this.date,
sellerBotUserId: sellerBotUserId ?? this.sellerBotUserId,
type: type ?? this.type,
);