getNetworkFromDoubleString static method
Implementation
static (NetworkType, AdsType) getNetworkFromDoubleString(String index) {
final f = index.split(".")[0];
final l = index.split(".")[1];
return (
networkMapper[f] ?? NetworkType.google,
adsMapper[l] ?? AdsType.inter
);
}