T constructor

T(
  1. String tagName, [
  2. String? value
])

Takes an HTML tagName and creates the corresponding element.

Implementation

T(String tagName, [super.value]) {
  tag = tagName;
}