copyWith method

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

Implementation

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