ReferenceNode constructor

ReferenceNode(
  1. dynamic property,
  2. dynamic inputType, [
  3. dynamic object = null
])

Implementation

ReferenceNode(property, inputType, [object = null]) : super() {
  this.property = property;
  this.inputType = inputType;

  this.object = object;

  this.node = null;

  this.updateType = NodeUpdateType.Object;

  this.setNodeType(inputType);
}