ci property

Implementation

AlexCIConfig get ci {
  const key = 'ci';
  return _ci ??= _data.containsKey(key)
      ? AlexCIConfig.fromYaml(_data[key] as YamlMap)
      : const AlexCIConfig();
}