Points constructor

Points({
  1. int? size,
  2. String? intervalString,
  3. bool? immutable,
  4. bool? b3D,
  5. int? dimension,
  6. bool? empty,
})

Implementation

Points(
    {this.size,
    this.intervalString,
    this.immutable,
    this.b3D,
    this.dimension,
    this.empty});