AdInsight constructor

AdInsight(
  1. AdType type,
  2. double floorPrice,
  3. String? adUnit,
  4. int adOpportunityId,
)

Implementation

AdInsight(AdType type, double floorPrice, String? adUnit, int adOpportunityId) {
  this.type = type;
  this.adOpportunityId = adOpportunityId;
  this.floorPrice = floorPrice;
  this.adUnit = adUnit;
}