IDEConfigs.fromYaml constructor

IDEConfigs.fromYaml(
  1. Map<Object?, Object?> yaml
)

Implementation

factory IDEConfigs.fromYaml(Map<Object?, Object?> yaml) {
  return IDEConfigs(
    intelliJ: yaml.containsKey('intellij')
        ? IntelliJConfig.fromYaml(yaml['intellij'])
        : IntelliJConfig.empty,
  );
}