AdEvent constructor

const AdEvent({
  1. required AdEventType type,
  2. String? adUnitId,
  3. AdError? error,
  4. AdReward? reward,
  5. AdPaidValue? paidValue,
})

Creates an ad event.

Implementation

const AdEvent({
  required this.type,
  this.adUnitId,
  this.error,
  this.reward,
  this.paidValue,
});