conversionThemeIconColor static method

Color conversionThemeIconColor(
  1. BuildContext context
)

Implementation

static Color conversionThemeIconColor(BuildContext context) {
  return Theme.of(context).brightness == Brightness.dark
      ? Colors.white
      : themeIconColor;
}