copyWith method
Implementation
ForumTopics copyWith({
int? totalCount,
List<ForumTopic>? topics,
int? nextOffsetDate,
int? nextOffsetMessageId,
int? nextOffsetForumTopicId,
}) => ForumTopics(
totalCount: totalCount ?? this.totalCount,
topics: topics ?? this.topics,
nextOffsetDate: nextOffsetDate ?? this.nextOffsetDate,
nextOffsetMessageId: nextOffsetMessageId ?? this.nextOffsetMessageId,
nextOffsetForumTopicId:
nextOffsetForumTopicId ?? this.nextOffsetForumTopicId,
);