copyWith method
SplashAdRequest
copyWith({
- String? posId,
- Duration? timeout,
- bool? preload,
- SplashAdLogo? logo,
- SplashAdAndroidOptions? android,
- SplashAdIOSOptions? ios,
- SplashAdHarmonyOptions? harmony,
Implementation
SplashAdRequest copyWith({
String? posId,
Duration? timeout,
bool? preload,
SplashAdLogo? logo,
SplashAdAndroidOptions? android,
SplashAdIOSOptions? ios,
SplashAdHarmonyOptions? harmony,
}) {
return SplashAdRequest(
posId: posId ?? this.posId,
timeout: timeout ?? this.timeout,
preload: preload ?? this.preload,
logo: logo ?? this.logo,
android: android ?? this.android,
ios: ios ?? this.ios,
harmony: harmony ?? this.harmony,
);
}