IPDBannerView constructor

const IPDBannerView(
  1. String posId, {
  2. Key? key,
  3. required double width,
  4. required double height,
  5. String userId = "",
  6. int refreshInterval = 0,
  7. dynamic bannerListener(
    1. IPDEvent ret
    )?,
})

Implementation

const IPDBannerView(this.posId,
    {Key? key,
    required this.width,
    required this.height,
    this.userId = "",
    this.refreshInterval = 0,
    this.bannerListener})
    : super(key: key);