copyWith method

AFUIPrototypeDrawerRouteParam copyWith({
  1. int? view,
  2. Map<String, bool>? themeExpanded,
  3. String? timeText,
  4. String? timeAdjustText,
  5. String? latencyAdjustText,
})

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,
  );
}