copyWith method
MessageGiftedPremium
copyWith(
{ - int? gifterUserId,
- int? receiverUserId,
- FormattedText? text,
- String? currency,
- int? amount,
- String? cryptocurrency,
- int? cryptocurrencyAmount,
- int? monthCount,
- int? dayCount,
- Sticker? sticker,
})
Implementation
MessageGiftedPremium copyWith({
int? gifterUserId,
int? receiverUserId,
FormattedText? text,
String? currency,
int? amount,
String? cryptocurrency,
int? cryptocurrencyAmount,
int? monthCount,
int? dayCount,
Sticker? sticker,
}) => MessageGiftedPremium(
gifterUserId: gifterUserId ?? this.gifterUserId,
receiverUserId: receiverUserId ?? this.receiverUserId,
text: text ?? this.text,
currency: currency ?? this.currency,
amount: amount ?? this.amount,
cryptocurrency: cryptocurrency ?? this.cryptocurrency,
cryptocurrencyAmount: cryptocurrencyAmount ?? this.cryptocurrencyAmount,
monthCount: monthCount ?? this.monthCount,
dayCount: dayCount ?? this.dayCount,
sticker: sticker ?? this.sticker,
);