getItemTitleStyleByThemeData method

TextStyle getItemTitleStyleByThemeData(
  1. ThemeData themeData
)

Implementation

TextStyle getItemTitleStyleByThemeData(ThemeData themeData) {
  return themeData.listTileTheme.titleTextStyle ??
      themeData.textTheme.bodyLarge!.copyWith(color: themeData.colorScheme.onSurface);
}