copyWith method
Implementation
GetForumTopics copyWith({
int? chatId,
String? query,
int? offsetDate,
int? offsetMessageId,
int? offsetForumTopicId,
int? limit,
}) => GetForumTopics(
chatId: chatId ?? this.chatId,
query: query ?? this.query,
offsetDate: offsetDate ?? this.offsetDate,
offsetMessageId: offsetMessageId ?? this.offsetMessageId,
offsetForumTopicId: offsetForumTopicId ?? this.offsetForumTopicId,
limit: limit ?? this.limit,
);