FastSplashAdBloc constructor

FastSplashAdBloc({
  1. FastSplashAdBlocState? initialState,
})

Implementation

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

  return instance;
}