uiH6 method

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

Implementation

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