HighfivveBannerAdView constructor

const HighfivveBannerAdView({
  1. required String position,
  2. required double height,
  3. String? pageType,
  4. Key? key,
})

Creates a HighfivveBannerAdView.

position is required and uniquely identifies the ad placement (e.g., "content_1"). pageType is optional and describes the context or type of page (e.g., "home", "detail").

Implementation

const HighfivveBannerAdView({
  required this.position,
  required this.height,
  this.pageType,
  super.key,
});