TemplateNode constructor

TemplateNode(
  1. List<Node> children,
  2. String? layoutName
)

Creates a template root with children and an optional layoutName.

Implementation

TemplateNode(this.children, this.layoutName);