H1Config constructor

const H1Config({
  1. TextStyle style = const TextStyle(fontSize: 32, height: 40 / 32, fontWeight: FontWeight.bold),
  2. RichTextBuilder? richTextBuilder,
})

Implementation

const H1Config({
  this.style = const TextStyle(
    fontSize: 32,
    height: 40 / 32,
    fontWeight: FontWeight.bold,
  ),
  this.richTextBuilder,
});