copyWith method
Implementation
AFUIPrototypeDrawerRouteParam copyWith({
int? view,
Map<String, bool>? themeExpanded,
String? timeText,
String? timeAdjustText,
String? latencyAdjustText,
}) {
return AFUIPrototypeDrawerRouteParam(
view: view ?? this.view,
themeExpanded: themeExpanded ?? this.themeExpanded,
textControllers: this.textControllers,
timeText: timeText ?? this.timeText,
timeAdjustText: timeAdjustText ?? this.timeAdjustText,
);
}