themeOf static method

IconThemeData themeOf(
  1. BuildContext context
)

Implementation

static IconThemeData themeOf(BuildContext context) {
  final result = ElIconTheme.of(context);
  return context.isDark ? result.darkTheme : result.theme;
}