xTextColorTeal method

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

Implementation

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