Profile constructor

Profile({
  1. Deployment? deployment,
  2. String? duration,
  3. Map<String, String>? labels,
  4. String? name,
  5. String? profileBytes,
  6. String? profileType,
  7. String? startTime,
})

Implementation

Profile({
  this.deployment,
  this.duration,
  this.labels,
  this.name,
  this.profileBytes,
  this.profileType,
  this.startTime,
});