uiH2 method

Text uiH2({
  1. TextStyle? style,
})

Implementation

Text uiH2({TextStyle? style}) {
  TextStyle defaultStyle = GoogleFonts.roboto(
      fontSize: 60,
      fontWeight: FontWeight.w300,
      fontStyle: FontStyle.normal,
      letterSpacing: -0.5,
      color: Colors.black87);
  return Text(this.data as String,
      style: (this.style ?? defaultStyle).merge(style ?? defaultStyle));
}