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