AppleSigningSession constructor

AppleSigningSession({
  1. required String keychainPath,
  2. required String keychainPassword,
  3. required List<AppleInstalledProfile> profiles,
  4. required String exportOptionsPath,
  5. required Future<void> cleanup(),
})

Creates a signing session.

Implementation

AppleSigningSession({
  required this.keychainPath,
  required this.keychainPassword,
  required List<AppleInstalledProfile> profiles,
  required this.exportOptionsPath,
  required Future<void> Function() cleanup,
}) : profiles = List<AppleInstalledProfile>.unmodifiable(profiles),
     _cleanup = cleanup;