SmartAdContainer constructor

const SmartAdContainer({
  1. Key? key,
  2. double height = 200,
  3. AdType preferredAdType = AdType.native,
  4. List<AdType> fallbackAdTypes = const [AdType.banner],
})

Implementation

const SmartAdContainer({
  Key? key,
  this.height = 200,
  this.preferredAdType = AdType.native,
  this.fallbackAdTypes = const [AdType.banner],
}) : super(key: key);