DublinCore constructor

DublinCore({
  1. String? title,
  2. String? description,
  3. String? creator,
  4. String? subject,
  5. String? publisher,
  6. String? contributor,
  7. DateTime? date,
  8. DateTime? created,
  9. DateTime? modified,
  10. String? type,
  11. String? format,
  12. String? identifier,
  13. String? source,
  14. String? language,
  15. String? relation,
  16. String? coverage,
  17. String? rights,
})

Implementation

DublinCore({
  this.title,
  this.description,
  this.creator,
  this.subject,
  this.publisher,
  this.contributor,
  this.date,
  this.created,
  this.modified,
  this.type,
  this.format,
  this.identifier,
  this.source,
  this.language,
  this.relation,
  this.coverage,
  this.rights,
});