copyWith method

ReadAllDirectMessagesChatTopicReactions copyWith({
  1. int? chatId,
  2. int? topicId,
})

Implementation

ReadAllDirectMessagesChatTopicReactions copyWith({
  int? chatId,
  int? topicId,
}) => ReadAllDirectMessagesChatTopicReactions(
  chatId: chatId ?? this.chatId,
  topicId: topicId ?? this.topicId,
);