Resource constructor

Resource({
  1. String? id,
  2. SIQResourceCategory? category,
  3. String? title,
  4. String? departmentId,
  5. Language? language,
  6. User? creator,
  7. User? modifier,
  8. DateTime? createdTime,
  9. DateTime? modifiedTime,
  10. String? publicUrl,
  11. Stats? stats,
  12. String? content,
  13. RatedType ratedType = RatedType.none,
})

Implementation

Resource({
  this.id,
  this.category,
  this.title,
  this.departmentId,
  this.language,
  this.creator,
  this.modifier,
  this.createdTime,
  this.modifiedTime,
  this.publicUrl,
  this.stats,
  this.content,
  this.ratedType = RatedType.none,
});