fromYamlMap static method

DeepLink? fromYamlMap(
  1. dynamic map
)

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]);
}