ReportStatus constructor

ReportStatus({
  1. String? reportId,
  2. String? reportName,
  3. StateEnum? state,
  4. String? startedOn,
  5. String? owner,
  6. String? expires,
  7. String? url,
})

Returns a new ReportStatus instance.

Implementation

ReportStatus({
  this.reportId,
  this.reportName,
  this.state,
  this.startedOn,
  this.owner,
  this.expires,
  this.url,
});