copyWith method
Implementation
ApartmentRange copyWith({
String? start,
Optional<String?>? end
}) {
return ApartmentRange(
start: start ?? this.start,
end: end != null ? end.value : this.end
);
}
ApartmentRange copyWith({
String? start,
Optional<String?>? end
}) {
return ApartmentRange(
start: start ?? this.start,
end: end != null ? end.value : this.end
);
}