runtime property

DOMNodeRuntime get runtime

Returns a DOMNodeRuntime with the actual generated node associated with treeMap and domGenerator.

Implementation

DOMNodeRuntime get runtime {
  final treeMap = this.treeMap;
  return treeMap != null
      ? treeMap.getRuntimeNode(this) ??
          (throw StateError(
              "This `DOMNode` is not associated with `treeMap`!"))
      : DOMNodeRuntimeDummy(treeMap, this, null);
}