GeoGeometry constructor
Implementation
factory GeoGeometry({
GeoPoint? location,
$core.Iterable<Geometry>? geometries,
}) {
final $result = create();
if (location != null) {
$result.location = location;
}
if (geometries != null) {
$result.geometries.addAll(geometries);
}
return $result;
}