CDAdWidget constructor

const CDAdWidget({
  1. required CDAdSize adSize,
  2. required CDAdController controller,
  3. Key? key,
  4. void onAdLoaded()?,
  5. void onAdFailed()?,
  6. void onAdTapped()?,
  7. void onInterstitialClosed()?,
})

Implementation

const CDAdWidget(
    {required this.adSize,
    required this.controller,
    super.key,
    this.onAdLoaded,
    this.onAdFailed,
    this.onAdTapped,
    this.onInterstitialClosed});