AdEvent constructor

const AdEvent({
  1. required AdEventType type,
  2. required String tag,
  3. required String requestId,
  4. required String adId,
  5. String adType = '',
  6. String message = '',
  7. double? height,
})

Implementation

const AdEvent({
  required this.type,
  required this.tag,
  required this.requestId,
  required this.adId,
  this.adType = '',
  this.message = '',
  this.height,
});