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