buildText function

Widget buildText(
  1. String text,
  2. TextStyle style
)

Implementation

Widget buildText(String text, TextStyle style) {
  return Text(
    text,
    style: style,
  );
}