textStyle property
textStyle Define the text style.
You can customise the text style how you prefer example:
textStyle: TextStyle(
color: Colors.red[800],
fontSize: 16.0,
fontWeight: FontWeight.bold,
fontStyle: FontStyle.italic,
letterSpacing: 2.0,
),

Implementation
final TextStyle? textStyle;