BigoNativeAdView constructor

BigoNativeAdView({
  1. Key? key,
  2. required BigoNativeAd bigoAd,
  3. bool visible = true,
  4. double? width = double.infinity,
  5. double? height = double.infinity,
  6. required Widget child,
})

Implementation

BigoNativeAdView({
  Key? key,
  required BigoNativeAd bigoAd,
  bool visible = true,
  this.width = double.infinity,
  this.height = double.infinity,
  required this.child,
}) : super(key: key, bigoAd: bigoAd, visible: visible);