GeometryNode constructor

const GeometryNode({
  1. required String type,
  2. double x = 0.0,
  3. double y = 0.0,
  4. double z = 0.0,
  5. double size = 1.0,
  6. int color = 0xFF888888,
})

Implementation

const GeometryNode({
  required this.type,
  this.x = 0.0,
  this.y = 0.0,
  this.z = 0.0,
  this.size = 1.0,
  this.color = 0xFF888888,
});