BigoNativeAdOptionsView constructor

const BigoNativeAdOptionsView({
  1. Key? key,
  2. double? width = double.infinity,
  3. double? height = double.infinity,
})

Creates Container for the options view. The platform native ad loader overlays the container with the platform view that contains an options view.

Implementation

const BigoNativeAdOptionsView({
  Key? key,
  this.width = double.infinity,
  this.height = double.infinity,
}) : super(key: key, adTag: BigoAdTag.options);