copyWith method

GetForumTopic copyWith({
  1. int? chatId,
  2. int? messageThreadId,
})

Implementation

GetForumTopic copyWith({
  int? chatId,
  int? messageThreadId,
}) =>
    GetForumTopic(
      chatId: chatId ?? this.chatId,
      messageThreadId: messageThreadId ?? this.messageThreadId,
    );