copyWith method

SetPinnedForumTopics copyWith({
  1. int? chatId,
  2. List<int>? forumTopicIds,
})

Implementation

SetPinnedForumTopics copyWith({int? chatId, List<int>? forumTopicIds}) =>
    SetPinnedForumTopics(
      chatId: chatId ?? this.chatId,
      forumTopicIds: forumTopicIds ?? this.forumTopicIds,
    );