copyWith static method
Implementation
static AdConfigDataModel copyWith({
List? tap,
int? native,
int? banner,
Map? failed,
bool showAds = false,
}) {
return AdConfigDataModel(
native: native,
banner: banner,
showAds: showAds,
failed: failed,
tap: tap,
);
}