getItemSubTitleStyleByThemeData method

TextStyle getItemSubTitleStyleByThemeData(
  1. ThemeData themeData
)

Implementation

TextStyle getItemSubTitleStyleByThemeData(ThemeData themeData) {
  return themeData.listTileTheme.subtitleTextStyle ??
      themeData.textTheme.bodyMedium!.copyWith(color: themeData.colorScheme.onSurfaceVariant);
}