uiH3 method

Text uiH3(
  1. {TextStyle? style}
)

Implementation

Text uiH3({TextStyle? style}) {
  TextStyle defaultStyle = GoogleFonts.roboto(
      fontSize: 48,
      fontWeight: FontWeight.w400,
      fontStyle: FontStyle.normal,
      letterSpacing: 0,
      color: Colors.black87);
  return Text(this.data as String,
      style: (this.style ?? defaultStyle).merge(style ?? defaultStyle));
}