NodeReference.textNode constructor
NodeReference.textNode(
- CompileViewStorage? _storage,
- int nodeIndex, {
- Expression? initialValue,
Create a NodeReference for a Text node.
Implementation
NodeReference.textNode(
this._storage,
int nodeIndex, {
o.Expression? initialValue,
}) : _type = null, // dynamic type for SSR compatibility (RenderNode)
_name = '_text_$nodeIndex',
_initialValue = initialValue;