normal static method

Widget normal(
  1. String text
)

Implementation

static Widget normal(String text) {
  return Text(
    text,
    style: const TextStyle(color: Colors.white),
  );
}