PropertyBinding constructor
Implementation
PropertyBinding(this.rootNode, this.path, Map<String, dynamic>? parsedPath) {
this.parsedPath = parsedPath ?? PropertyBinding.parseTrackName(path);
node = PropertyBinding.findNode(rootNode, this.parsedPath["nodeName"]) ?? rootNode;
getValue = getValueUnbound;
setValue = setValueUnbound;
}