StartCommand constructor

StartCommand()

Implementation

StartCommand() {
  argParser
    ..addFlag('debug',
        abbr: 'd',
        negatable: false,
        help: 'Outputs additional logging information')
    ..addFlag('interactive',
        abbr: 'i',
        negatable: false,
        help: 'Starts the container in the foreground so you can '
            'see all output');
}