fromYamlMap static method
Implementation
static DeepLink? fromYamlMap(dynamic map) {
if (map == null) {
return null;
}
if (map is! YamlMap) {
throw InvalidFormatException();
}
return DeepLink(link: map[_LINK], appleTeamID: map[_APPLE_TEAM_ID]);
}