FastRewardedAdBlocState constructor

FastRewardedAdBlocState({
  1. bool isInitializing = false,
  2. bool isInitialized = false,
  3. dynamic error,
  4. bool hasDismissedAd = false,
  5. bool isLoadingAd = false,
  6. bool hasLoadedAd = false,
  7. bool isShowingAd = false,
  8. String? requestId,
})

Implementation

FastRewardedAdBlocState({
  super.isInitializing = false,
  super.isInitialized = false,
  super.error,
  this.hasDismissedAd = false,
  this.isLoadingAd = false,
  this.hasLoadedAd = false,
  this.isShowingAd = false,
  this.requestId,
});