handleInitializedEvent method

Stream<FastRewardedAdBlocState> handleInitializedEvent()

Handles the initialized event after successful initialization.

Implementation

Stream<FastRewardedAdBlocState> handleInitializedEvent() async* {
  if (isInitializing) {
    isInitialized = true;

    yield currentState.copyWith(
      isInitializing: false,
      isInitialized: true,
    );
  }
}