ClockTime copyWith({ int? hour, int? minute, int? second, }) => ClockTime( hour: hour ?? this.hour, minute: minute ?? this.minute, second: second ?? this.second, );