getTitleTextStyle method
Implementation
TextStyle? getTitleTextStyle(ThemeData themeData) {
TextStyle? textStyle = themeData.appBarTheme.titleTextStyle;
if (textStyle == null) {
textStyle = themeData.textTheme.titleLarge;
}
return textStyle;
}