H2Config constructor

const H2Config({
  1. TextStyle style = const TextStyle(fontSize: 24, height: 30 / 24, fontWeight: FontWeight.bold),
  2. RichTextBuilder? richTextBuilder,
})

Implementation

const H2Config({
  this.style = const TextStyle(
    fontSize: 24,
    height: 30 / 24,
    fontWeight: FontWeight.bold,
  ),
  this.richTextBuilder,
});