NativeBannerAdLoadedErrorEvent constructor

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

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

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

Implementation

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