handleInitializedEvent method
Handles the event after initialization is done.
Implementation
Stream<FastThemeBlocState> handleInitializedEvent() async* {
if (isInitializing) {
_logger.debug('Initialized');
isInitialized = true;
yield currentState.copyWith(isInitialized: true);
}
}