copyWith method
FastNativeAdBlocEventPayload
copyWith({
- FastAdInfo? adInfo,
- String? country,
- AdWithView? adView,
- String? language,
- FastResponseAd? ad,
- String? adId,
Implementation
FastNativeAdBlocEventPayload copyWith({
FastAdInfo? adInfo,
String? country,
AdWithView? adView,
String? language,
FastResponseAd? ad,
String? adId,
}) {
return FastNativeAdBlocEventPayload(
adInfo: adInfo ?? this.adInfo,
country: country ?? this.country,
adView: adView ?? this.adView,
language: language ?? this.language,
ad: ad ?? this.ad,
adId: adId ?? this.adId,
);
}