styleModeForBrightness function

String styleModeForBrightness(
  1. Brightness brightness
)

Published-style mode string for a Flutter Brightness: light for the light theme, dark for the dark theme.

Implementation

String styleModeForBrightness(Brightness brightness) =>
    brightness == Brightness.dark ? 'dark' : 'light';