copyWith method
Implementation
StreetNumber copyWith({
String? direction,
num? distance,
LatLng? latLonPoint,
String? number,
String? street,
}) {
return StreetNumber(
direction: direction ?? this.direction,
distance: distance ?? this.distance,
latLonPoint: latLonPoint ?? this.latLonPoint,
number: number ?? this.number,
street: street ?? this.street,
);
}