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