handleShowSplashAdEvent method

Stream<FastSplashAdBlocState> handleShowSplashAdEvent()

Shows the splash ad.

Implementation

Stream<FastSplashAdBlocState> handleShowSplashAdEvent() async* {
  if (canShowAd) _service!.showAdIfAvailable();

  yield currentState.copyWith(isAdLoaded: false, isAdDisplayable: false);
}