copyWith method

TimeOfDay copyWith({
  1. int? hour,
  2. int? minute,
  3. int? second,
})

Implementation

TimeOfDay copyWith({
  int? hour,
  int? minute,
  int? second,
}) {
  return TimeOfDay(
    hour: hour ?? this.hour,
    minute: minute ?? this.minute,
    second: second ?? this.second,
  );
}