BannerOptions constructor
BannerOptions({ - bool parentalGateEnabled = false,
- bool bumperPageEnabled = false,
- String? bumperPageCustomAppName,
- 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;
}