SpatialIndexPath constructor

SpatialIndexPath(
  1. String path, {
  2. Iterable<DataType>? types,
  3. BoundingBox? boundingBox,
})

Implementation

SpatialIndexPath(this.path, {Iterable<DataType>? types, this.boundingBox})
    : types = (types == null) ? null : List<DataType>.unmodifiable(types);