Analysis constructor

Analysis({
  1. String? analysisId,
  2. String? arn,
  3. DateTime? createdTime,
  4. List<String>? dataSetArns,
  5. List<AnalysisError>? errors,
  6. DateTime? lastUpdatedTime,
  7. String? name,
  8. List<Sheet>? sheets,
  9. ResourceStatus? status,
  10. String? themeArn,
})

Implementation

Analysis({
  this.analysisId,
  this.arn,
  this.createdTime,
  this.dataSetArns,
  this.errors,
  this.lastUpdatedTime,
  this.name,
  this.sheets,
  this.status,
  this.themeArn,
});