SymbolsOutputConfig constructor

SymbolsOutputConfig(
  1. Uri path
)

Implementation

SymbolsOutputConfig(this.path) {
  if (p.extension(path.toFilePath()) != '.yaml') {
    throw ConfigException('Symbol\'s output path must end with ".yaml".');
  }
}