Heading constructor
Heading({
- String text = '',
- BLOCKS level = BLOCKS.HEADING_1,
- List? content,
- FontWeight fontWeight = FontWeight.bold,
- required Next next,
Implementation
Heading({
this.text = '',
this.level = BLOCKS.HEADING_1,
this.content,
this.fontWeight = FontWeight.bold,
required this.next,
});