fontSizeText method

Widget fontSizeText(
  1. double fontSize, {
  2. Color? color,
  3. FontWeight? fontWeight,
})

Implementation

Widget fontSizeText(double fontSize,{Color? color,FontWeight? fontWeight}) => Text(this,style: TextStyle(fontSize: fontSize,color: color,fontWeight: fontWeight),);