PropertyBinding constructor

PropertyBinding(
  1. dynamic rootNode,
  2. String path, [
  3. Map<String, String?>? parsedPath
])

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;
}