ReportData constructor

ReportData(
  1. {int? id,
  2. String? refId,
  3. String? userId,
  4. String? type,
  5. String? reportTitle,
  6. String? reportDescription,
  7. int? status,
  8. String? createdAt,
  9. String? updatedAt}
)

Implementation

ReportData({
  this.id,
  this.refId,
  this.userId,
  this.type,
  this.reportTitle,
  this.reportDescription,
  this.status,
  this.createdAt,
  this.updatedAt,
});