copyWith method

GetMessageAddedReactions copyWith({
  1. int? chatId,
  2. int? messageId,
  3. ReactionType? reactionType,
  4. String? offset,
  5. int? limit,
})

Implementation

GetMessageAddedReactions copyWith({
  int? chatId,
  int? messageId,
  ReactionType? reactionType,
  String? offset,
  int? limit,
}) =>
    GetMessageAddedReactions(
      chatId: chatId ?? this.chatId,
      messageId: messageId ?? this.messageId,
      reactionType: reactionType ?? this.reactionType,
      offset: offset ?? this.offset,
      limit: limit ?? this.limit,
    );