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