fromYamlMap static method
Implementation
static AdMob? fromYamlMap(dynamic map) {
if (map == null) {
return null;
}
if (map is! YamlMap) {
throw InvalidFormatException();
}
return AdMob(
iOSAppID: map[_IOS_APP_ID], androidAppID: map[_ANDROID_APP_ID]);
}