H1 constructor

const H1({
  1. BSTextParams? textData,
  2. BSSelectParams? selectData,
  3. Key? key,
})

data is required so it can be passed to the Text widget

Implementation

const H1({
  this.textData,
  this.selectData,
  Key? key,
}) : super(key: key);