git property

Implementation

AlexGitConfig get git {
  const key = 'git';
  return _git ??= _data.containsKey(key)
      ? AlexGitConfig.fromYaml(_data[key] as YamlMap)
      : const AlexGitConfig();
}