Environment constructor

Environment({
  1. Timestamp? completionTime,
  2. Timestamp? creationTime,
  3. List<EnvironmentDimensionValueEntry>? dimensionValue,
  4. String? displayName,
  5. String? environmentId,
  6. MergedResult? environmentResult,
  7. String? executionId,
  8. String? historyId,
  9. String? projectId,
  10. ResultsStorage? resultsStorage,
  11. List<ShardSummary>? shardSummaries,
})

Implementation

Environment({
  this.completionTime,
  this.creationTime,
  this.dimensionValue,
  this.displayName,
  this.environmentId,
  this.environmentResult,
  this.executionId,
  this.historyId,
  this.projectId,
  this.resultsStorage,
  this.shardSummaries,
});