BannerOptions constructor

BannerOptions({
  1. bool parentalGateEnabled = false,
  2. bool bumperPageEnabled = false,
  3. String? bumperPageCustomAppName,
  4. bool? isBackgroundTransparent = true,
})

Implementation

BannerOptions({
  bool parentalGateEnabled = false,
  bool bumperPageEnabled = false,
  String? bumperPageCustomAppName,
  this.isBackgroundTransparent = true,
}) {
  this.parentalGateEnabled = parentalGateEnabled;
  this.bumperPageEnabled = bumperPageEnabled;
  this.bumperPageCustomAppName = bumperPageCustomAppName;
}