Node constructor

const Node(
  1. {required Type type,
  2. Map<String, List<Node>> options = const <String, List<Node>>{},
  3. String? value}
)

Implementation

const Node({
  required this.type,
  this.options = const <String, List<Node>>{},
  this.value,
});