NativeAdView constructor

NativeAdView({
  1. Key? key,
  2. required String codeId,
  3. required double width,
  4. required double height,
  5. required ViewLoadCallback viewLoadCallback,
  6. required DownloadCallback downloadCallback,
  7. EdgeInsetsGeometry? margin,
  8. EdgeInsetsGeometry? padding,
  9. Color? color,
  10. BorderRadius? radius,
})

Implementation

NativeAdView({
  super.key,
  required this.codeId,
  required this.width,
  required this.height,
  required this.viewLoadCallback,
  required this.downloadCallback,
  this.margin,
  this.padding,
  this.color,
  this.radius,
});