buildText method

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

Implementation

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