xTextColorTealAccent method

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

Implementation

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