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