GeoStream constructor

GeoStream({
  1. void point(
    1. num x,
    2. num y, [
    3. num? z
    ]) = 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});