DoctorCommand constructor

DoctorCommand()

Implementation

DoctorCommand() {
  argParser.addOption(
    'output',
    allowed: ['text', 'json'],
    defaultsTo: 'text',
    help: 'Specifies the output format.',
  );
}