AdCallerInterface constructor

AdCallerInterface({
  1. required dynamic onClose(),
  2. required dynamic onError(),
  3. required dynamic onStarted(),
  4. required dynamic onLoaded(),
  5. required dynamic onFailedToLoad(),
  6. dynamic onRewardSkip()?,
})

Implementation

AdCallerInterface({
  required this.onClose,
  required this.onError,
  required this.onStarted,
  required this.onLoaded,
  required this.onFailedToLoad,
  this.onRewardSkip,
});