Report constructor

Report({
  1. ReportEmbedded? embedded,
  2. ReportLinks? links,
  3. bool? archived,
  4. DateTime? createdAt,
  5. String? description,
  6. DateTime? dueBy,
  7. String? id,
  8. String? identificationNumber,
  9. WorkflowState? phase,
  10. ReportPriority? priority,
  11. String? reference,
  12. DateTime? scheduledAt,
  13. List<String>? tags = const [],
  14. String? type,
  15. DateTime? updatedAt,
})

Returns a new Report instance.

Implementation

Report({
  this.embedded,
  this.links,
  this.archived,
  this.createdAt,
  this.description,
  this.dueBy,
  this.id,
  this.identificationNumber,
  this.phase,
  this.priority,
  this.reference,
  this.scheduledAt,
  this.tags = const [],
  this.type,
  this.updatedAt,
});