AppleSigningSession constructor
AppleSigningSession({})
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;