toText method
Text
toText(
- double fontSize, {
- TextAlign? textAlign,
- Color? color,
- FontWeight? fontWeight,
- int? maxLines,
- TextOverflow? overflow,
Implementation
Text toText(
double fontSize, {
TextAlign? textAlign,
Color? color,
FontWeight? fontWeight,
int? maxLines,
TextOverflow? overflow,
}) {
return Text(
this,
textAlign: textAlign,
maxLines: maxLines,
overflow: overflow,
style: TextStyle(
fontSize: fontSize.sp,
color: color,
fontWeight: fontWeight,
),
);
}