Configuration.fromCommandLine constructor

Configuration.fromCommandLine(
  1. Iterable<String> arguments
)

Implementation

factory Configuration.fromCommandLine(Iterable<String> arguments) {
  final results = argParser.parse(arguments);
  return Configuration.fromArgResults(results);
}