ElementNode constructor

const ElementNode({
  1. required String tag,
  2. Map<String, Attribute> attributes = const {},
  3. List<PulsarNode> children = const [],
  4. Object? key,
})

Implementation

const ElementNode({
  required this.tag,
  this.attributes = const {},
  this.children = const [],
  super.key,
});