copyWith method
Implementation
ClosingRange copyWith({
DateTime? date,
DateTime? start,
DateTime? end,
}) {
return ClosingRange(
date: date ?? this.date,
start: start ?? this.start,
end: end ?? this.end,
);
}
ClosingRange copyWith({
DateTime? date,
DateTime? start,
DateTime? end,
}) {
return ClosingRange(
date: date ?? this.date,
start: start ?? this.start,
end: end ?? this.end,
);
}