ReferenceNode constructor
ReferenceNode(
- dynamic property,
- dynamic inputType, [
- 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);
}