BlackText method

Text BlackText(
  1. String text
)

Implementation

Text BlackText(String text) {
  return Text(
    text,
    style: TextStyle(
      color: Colors.black,
    ),
  );
}