H2 constructor
H2({
- Key? key,
- required dynamic text,
- dynamic color,
- dynamic fontWeight,
- dynamic fontSize,
- dynamic textAlign,
- dynamic fontFamily,
Implementation
H2({
super.key,
required this.text,
this.color,
this.fontWeight,
this.fontSize,
this.textAlign,
this.fontFamily,
});