copyWith method

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

Implementation

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