Report constructor

Report({
  1. List<ReportFiles>? files,
  2. String? id,
  3. bool? isReportReady,
  4. String? kind,
  5. ReportRequest? request,
  6. int? rowCount,
  7. List<ReportRow>? rows,
  8. String? statisticsCurrencyCode,
  9. String? statisticsTimeZone,
})

Implementation

Report({
  this.files,
  this.id,
  this.isReportReady,
  this.kind,
  this.request,
  this.rowCount,
  this.rows,
  this.statisticsCurrencyCode,
  this.statisticsTimeZone,
});