copyWith method

AddPendingPaidMessageReaction copyWith({
  1. int? chatId,
  2. int? messageId,
  3. int? starCount,
  4. 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,
);