Heading constructor

Heading({
  1. String? text,
  2. String? textAlign,
  3. String? textDecoration,
  4. String? textTransform,
  5. String? fontStyle,
  6. String? fontFamily,
  7. String? fontWeight,
  8. String? color,
})

Implementation

Heading(
    {this.text,
    this.textAlign,
    this.textDecoration,
    this.textTransform,
    this.fontStyle,
    this.fontFamily,
    this.fontWeight,
    this.color});