DublinCore constructor

const DublinCore({
  1. String? title,
  2. String? description,
  3. String? creator,
  4. String? subject,
  5. List<String> subjects = const <String>[],
  6. String? publisher,
  7. String? contributor,
  8. String? date,
  9. String? type,
  10. String? format,
  11. String? identifier,
  12. String? source,
  13. String? language,
  14. String? relation,
  15. String? coverage,
  16. String? rights,
})

Implementation

const DublinCore({
  this.title,
  this.description,
  this.creator,
  this.subject,
  this.subjects = const <String>[],
  this.publisher,
  this.contributor,
  this.date,
  this.type,
  this.format,
  this.identifier,
  this.source,
  this.language,
  this.relation,
  this.coverage,
  this.rights,
});