GeometryCollectionField constructor

const GeometryCollectionField({
  1. required String type,
  2. required List geometries,
  3. List<MultiPointField>? multiPoints,
  4. List<MultiLineStringField>? multiLineStrings,
  5. List<LineStringField>? lineStrings,
  6. List<MultiPolygonField>? multiPolygons,
  7. List<PointField>? points,
  8. List<PolygonField>? polygons,
})

Implementation

const GeometryCollectionField({
  required this.type,
  required this.geometries,
  this.multiPoints,
  this.multiLineStrings,
  this.lineStrings,
  this.multiPolygons,
  this.points,
  this.polygons
});