buildText method

Text buildText(
  1. String text,
  2. double size,
  3. FontWeight fontWeight,
  4. Color textclr,
)

Implementation

Text buildText(String text, double size, FontWeight fontWeight, Color textclr) {
  return Text(
    text, textAlign: TextAlign.center,
    style: TextStyle(fontSize: size , fontWeight: fontWeight, color: textclr),
  );
}