xTextColorYellow method

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

Implementation

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