ReportData constructor

ReportData({
  1. String? displayName,
  2. String? description,
  3. String? reportName,
  4. String? icon,
  5. List<Object> extraQueryParams = const [],
  6. ReportStatus status = {},
})

Returns a new ReportData instance.

Implementation

ReportData({
  this.displayName,
  this.description,
  this.reportName,
  this.icon,
  this.extraQueryParams = const [],
  this.status = {},
});