BannerAdLoadedErrorEvent constructor

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

Represents an event that occurs when a banner ad fails to load.

This event is triggered when there is an error while loading a banner ad. It provides information about the error that occurred.

Implementation

BannerAdLoadedErrorEvent({
  required super.viewId,
  required super.reason,
});