IOSAppStoreCommand constructor

IOSAppStoreCommand()

Implementation

IOSAppStoreCommand() {
  argParser
    ..addOption(
      'appId',
      help: 'App ID',
    )
    ..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(
      'flutterVersion',
      help: 'Flutter version',
      mandatory: true,
    )
    ..addFlag(
      'allowAssetDiffs',
      help: 'Allow asset diffs',
    );
}