Report constructor

Report({
  1. String? createTime,
  2. String? description,
  3. String? displayName,
  4. String? name,
  5. String? state,
  6. ReportSummary? summary,
  7. String? type,
  8. String? updateTime,
})

Implementation

Report({
  this.createTime,
  this.description,
  this.displayName,
  this.name,
  this.state,
  this.summary,
  this.type,
  this.updateTime,
});