Profile constructor

Profile(
  1. String id,
  2. String uuid,
  3. String content,
  4. String name,
  5. String type,
  6. String state,
)

id The ID of the provisioning profile

content The raw content which can be used to store the provisioning profile as a file

name The name of the provisioning profile

type The type of the provisioning profile, such as adhoc or store.

state The state of the provisioning profile (e.g. active or inactive)

Implementation

Profile(this.id, this.uuid, this.content, this.name, this.type, this.state);