FastInterstitialAdBloc constructor
FastInterstitialAdBloc({
- FastInterstitialAdBlocState? initialState,
Implementation
factory FastInterstitialAdBloc({FastInterstitialAdBlocState? initialState}) {
if (!_hasBeenInstantiated) {
_instance = FastInterstitialAdBloc._(initialState: initialState);
_hasBeenInstantiated = true;
}
return instance;
}