FastAdInfoBloc constructor

FastAdInfoBloc({
  1. FastAdInfoBlocState? initialState,
})

Implementation

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

  return instance;
}