H4 constructor

H4({
  1. Key? key,
  2. required dynamic text,
  3. dynamic color,
  4. dynamic fontWeight,
  5. dynamic textAlign,
  6. dynamic fontSize,
  7. dynamic fontFamily,
})

Implementation

H4({
  super.key,
  required this.text,
  this.color,
  this.fontWeight,
  this.textAlign,
  this.fontSize,
  this.fontFamily,
});