copyWith method

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

Implementation

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