copyWith method
StarTransactionTypeBotPaidMediaSale
copyWith({
- int? userId,
- List<
PaidMedia> ? media, - String? payload,
- AffiliateInfo? affiliate,
Implementation
StarTransactionTypeBotPaidMediaSale copyWith({
int? userId,
List<PaidMedia>? media,
String? payload,
AffiliateInfo? affiliate,
}) => StarTransactionTypeBotPaidMediaSale(
userId: userId ?? this.userId,
media: media ?? this.media,
payload: payload ?? this.payload,
affiliate: affiliate ?? this.affiliate,
);