ElementMorphic constructor

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

Implementation

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