copyWith method
AddPendingPaidMessageReaction
copyWith({
- int? chatId,
- int? messageId,
- int? starCount,
- PaidReactionType? type,
Implementation
AddPendingPaidMessageReaction copyWith({
int? chatId,
int? messageId,
int? starCount,
PaidReactionType? type,
}) => AddPendingPaidMessageReaction(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
starCount: starCount ?? this.starCount,
type: type ?? this.type,
);