getTextStyle method

TextStyle getTextStyle(
  1. Color? color
)

text format

Implementation

TextStyle getTextStyle(Color? color) {
  return TextStyle(fontSize: 10, color: color);
}