handleSystemEvent method

Stream<FastThemeBlocState> handleSystemEvent()

Handles the event to set the system theme.

Implementation

Stream<FastThemeBlocState> handleSystemEvent() async* {
  yield currentState.copyWith(
    brightness: getPlatformBrightness(),
    themeMode: ThemeMode.system,
  );
}