GeoStream constructor

GeoStream({
  1. void point(
    1. List<num>
    ) = noop,
  2. void sphere() = noop,
  3. void lineStart() = noop,
  4. void lineEnd() = noop,
  5. void polygonStart() = noop,
  6. void polygonEnd() = noop,
})

Implementation

GeoStream(
    {this.point = noop,
    this.sphere = noop,
    this.lineStart = noop,
    this.lineEnd = noop,
    this.polygonStart = noop,
    this.polygonEnd = noop});