Experiment constructor

Experiment({
  1. UserContext? createdBy,
  2. DateTime? creationTime,
  3. String? description,
  4. String? displayName,
  5. String? experimentArn,
  6. String? experimentName,
  7. UserContext? lastModifiedBy,
  8. DateTime? lastModifiedTime,
  9. ExperimentSource? source,
  10. List<Tag>? tags,
})

Implementation

Experiment({
  this.createdBy,
  this.creationTime,
  this.description,
  this.displayName,
  this.experimentArn,
  this.experimentName,
  this.lastModifiedBy,
  this.lastModifiedTime,
  this.source,
  this.tags,
});