xTextColorAmber method

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

Implementation

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