copyWith method
Implementation
GeoRect copyWith({
GeoPoint? southWestPoint,
GeoPoint? northEastPoint
}) {
return GeoRect(
southWestPoint: southWestPoint ?? this.southWestPoint,
northEastPoint: northEastPoint ?? this.northEastPoint
);
}