Node constructor

Node({
  1. String? className,
  2. String? value,
  3. List<Node>? children,
  4. bool noPrefix = false,
})

Implementation

Node({this.className, this.value, this.children, this.noPrefix = false});