MdElement constructor

const MdElement({
  1. required MdElementType type,
  2. String content = '',
  3. Map<String, String> attributes = const {},
  4. List<MdElement> children = const [],
  5. int level = 0,
})

Implementation

const MdElement({
  required this.type,
  this.content = '',
  this.attributes = const {},
  this.children = const [],
  this.level = 0,
});