TimeRange copyWith({ TimeOfDay? start, TimeOfDay? end, }) { return TimeRange( start: start ?? this.start, end: end ?? this.end, ); }