H1 constructor

H1({
  1. String? fontFamily,
  2. String? color,
  3. int? fontSize,
  4. int? fontWeight,
  5. int? opacity,
})

Implementation

H1({
  String? fontFamily,
  String? color,
  int? fontSize,
  int? fontWeight,
  int? opacity,
}) {
  _fontFamily = fontFamily;
  _color = color;
  _fontSize = fontSize;
  _fontWeight = fontWeight;
  _opacity = opacity;
}