xTextColorRed method
- {Color color = Colors.red,
- double fontsize,
- FontWeight fontWeight}
Implementation
Widget xTextColorRed(
{Color color = Colors.red, double fontsize, FontWeight fontWeight}) {
return Textmaterial(
text: this,
color: color,
fontsize: fontsize,
fontWeight: fontWeight,
);
}