BannerAdErrorEvent constructor

BannerAdErrorEvent({
  1. required int viewId,
  2. required String reason,
})

Represents an event that occurs when a banner ad encounters an error.

This event provides information about the error that occurred.

Implementation

BannerAdErrorEvent({
  required super.viewId,
  required this.reason,
});