IOSFirebaseAppDistributionCommand constructor

IOSFirebaseAppDistributionCommand()

Implementation

IOSFirebaseAppDistributionCommand() {
  argParser
    ..addOption(
      'firebaseAppId',
      help: 'Firebase app ID',
      mandatory: true,
    )
    ..addOption(
      'serviceAccount',
      help: 'Firebase service account',
      mandatory: true,
    )
    ..addOption(
      'appId',
      help: 'App ID',
      mandatory: true,
    )
    ..addOption(
      'issuerId',
      help: 'Issuer ID',
      mandatory: true,
    )
    ..addOption(
      'keyId',
      help: 'Key ID',
      mandatory: true,
    )
    ..addOption(
      'privateKey',
      help: 'Private Key',
      mandatory: true,
    )
    ..addOption(
      'gitUrl',
      help: 'Git URL',
      mandatory: true,
    )
    ..addOption(
      'buildOptions',
      help: 'Build options',
      mandatory: true,
    )
    ..addOption(
      'testerGroups',
      help: 'Tester groups',
      mandatory: true,
    );
}