DoneLoadingCallback typedef

DoneLoadingCallback = void Function({int? height, NativeAdData? nativeAd, required bool success, int? width})

Represents a callback which is called when an ad is either loaded or throws an error

Implementation

typedef DoneLoadingCallback = void Function({
  required bool success,
  int? width,
  int? height,
  NativeAdData? nativeAd,
});