copyWith method
SplashAdRequest
copyWith({
- String? posId,
- Duration? timeout,
- bool? preload,
- SplashAdLogo? logo,
- SplashAdAndroidOptions? android,
- SplashAdIOSOptions? ios,
Implementation
SplashAdRequest copyWith({
String? posId,
Duration? timeout,
bool? preload,
SplashAdLogo? logo,
SplashAdAndroidOptions? android,
SplashAdIOSOptions? ios,
}) {
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,
);
}