Node constructor

Node([
  1. dynamic nodeType = null
])

Implementation

Node([nodeType = null]) {
  this.nodeType = nodeType;

  this.updateType = NodeUpdateType.None;

  this.uuid = MathUtils.generateUUID();
}