FastRewardedAdBloc constructor

FastRewardedAdBloc({
  1. FastRewardedAdBlocState? initialState,
})

Factory constructor to create an instance of FastRewardedAdBloc.

Implementation

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

  return instance;
}