xText method

Widget xText (
  1. {Color color = Colors.black,
  2. double fontsize,
  3. FontWeight fontWeight}
)

Implementation

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