GenerateCertificatesCommand constructor

GenerateCertificatesCommand()

Implementation

GenerateCertificatesCommand() {
  argParser
    ..addOption(
      'out',
      help: 'Root for output directory. Defaults to working directory',
    )
    ..addFlag(
      'secure',
      defaultsTo: false,
      help: 'Limits access to read and write fo certificates to current user',
    );
}