VideoCallback constructor

VideoCallback({
  1. OnAdLoadSuccess? onAdLoadSuccess,
  2. OnAdLoadFailed? onAdLoadFailed,
  3. OnAdShow? onAdShow,
  4. OnAdClick? onAdClick,
  5. OnAdClosed? onAdClosed,
  6. OnAdRenderFailed? onAdRenderFailed,
  7. OnAdRequestSuccess? onAdRequestSuccess,
  8. OnVideoStart? onVideoStart,
  9. OnVideoPause? onVideoPause,
  10. OnVideoSkip? onVideoSkip,
  11. OnVideoComplete? onVideoComplete,
  12. OnPicAdEnd? onPicAdEnd,
  13. OnReward? onReward,
})

Implementation

VideoCallback({
  super.onAdLoadSuccess,
  super.onAdLoadFailed,
  super.onAdShow,
  super.onAdClick,
  super.onAdClosed,
  super.onAdRenderFailed,
  this.onAdRequestSuccess,
  this.onVideoStart,
  this.onVideoPause,
  this.onVideoSkip,
  this.onVideoComplete,
  this.onPicAdEnd,
  this.onReward,
});