$CustomTag constructor

  1. @override
$CustomTag(
  1. String tag, {
  2. Map? attrs,
  3. List<Tag>? children,
  4. dynamic type = TagType.double,
  5. List classes = const [],
})

Implementation

@override
$CustomTag(
  String tag, {
  super.attrs,
  super.children,
  var type = TagType.double,
  super.classes,
}) {
  _tag = tag;
  this.type = type;
}