AppleInstalledProfile constructor

const AppleInstalledProfile({
  1. required String bundleId,
  2. required String uuid,
  3. required String name,
  4. required String teamId,
  5. required String installedPath,
})

Creates installed-profile metadata.

Implementation

const AppleInstalledProfile({
  required this.bundleId,
  required this.uuid,
  required this.name,
  required this.teamId,
  required this.installedPath,
});