TestDriveCommand constructor

TestDriveCommand()

Implementation

TestDriveCommand() {
  argParser.addFlag(
    'android',
    defaultsTo: true,
    negatable: false,
    help: 'Run the test drive on Android',
  );
  argParser.addFlag(
    'ios',
    defaultsTo: false,
    negatable: false,
    help: 'Run the test drive on Ios',
  );
}