xTextColorBrown method

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

Implementation

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