copyWith method
StarTransactionTypeBotInvoiceSale
copyWith({
- int? userId,
- ProductInfo? productInfo,
- String? invoicePayload,
- AffiliateInfo? affiliate,
Implementation
StarTransactionTypeBotInvoiceSale copyWith({
int? userId,
ProductInfo? productInfo,
String? invoicePayload,
AffiliateInfo? affiliate,
}) => StarTransactionTypeBotInvoiceSale(
userId: userId ?? this.userId,
productInfo: productInfo ?? this.productInfo,
invoicePayload: invoicePayload ?? this.invoicePayload,
affiliate: affiliate ?? this.affiliate,
);