FastInterstitialAdBloc constructor

FastInterstitialAdBloc({
  1. FastInterstitialAdBlocState? initialState,
})

Implementation

factory FastInterstitialAdBloc({FastInterstitialAdBlocState? initialState}) {
  if (!_hasBeenInstantiated) {
    _instance = FastInterstitialAdBloc._(initialState: initialState);
    _hasBeenInstantiated = true;
  }

  return instance;
}