ApplePromotionOptions constructor

const ApplePromotionOptions({
  1. required String workingDirectory,
  2. required AppleCredentials appleCredentials,
  3. required GitHubContext github,
  4. String? smfPath,
  5. AppStoreConnectApi? client,
  6. GitHubApi? githubApi,
  7. Future<String> resolveBundleIdentifier(
    1. String appRoot,
    2. IosConfig config, {
    3. String? flavor,
    }) = AppleProject.resolveBundleId,
})

Creates promotion options.

Implementation

const ApplePromotionOptions({
  required this.workingDirectory,
  required this.appleCredentials,
  required this.github,
  this.smfPath,
  this.client,
  this.githubApi,
  this.resolveBundleIdentifier = AppleProject.resolveBundleId,
});