copyWith method
Implementation
BotSubsessionListItem copyWith({
BotSubsessionTopicContext? context,
String? title,
String? summary,
int? latestTime,
bool? showUnreadDot,
int? highlightStart,
int? highlightEnd,
}) {
return BotSubsessionListItem(
context: context ?? this.context,
title: title ?? this.title,
summary: summary ?? this.summary,
latestTime: latestTime ?? this.latestTime,
showUnreadDot: showUnreadDot ?? this.showUnreadDot,
highlightStart: highlightStart,
highlightEnd: highlightEnd,
);
}