TagflowNode constructor

const TagflowNode({
  1. required String tag,
  2. String? textContent,
  3. TagflowNode? parent,
  4. LinkedHashMap<String, String>? attributes,
})

Implementation

const TagflowNode({
  required this.tag,
  this.textContent,
  this.parent,
  this.attributes,
});