PropertyBinding constructor
PropertyBinding(
- dynamic rootNode,
- dynamic path,
- dynamic parsedPath
Implementation
PropertyBinding(rootNode, path, parsedPath) {
this.path = path;
this.parsedPath = parsedPath ?? PropertyBinding.parseTrackName(path);
node = PropertyBinding.findNode(rootNode, this.parsedPath["nodeName"]) ??
rootNode;
this.rootNode = rootNode;
getValue = getValue_unbound;
setValue = setValue_unbound;
}