Metadata constructor

Metadata({
  1. required String title,
  2. required String date,
  3. required String language,
  4. required List<String> identifiers,
  5. required String uniqueIdentifierValue,
  6. List<String>? rights,
  7. String? contributor,
  8. String? creator,
  9. String? publisher,
  10. String? subject,
  11. String? description,
})

Implementation

Metadata({
  required this.title,
  required this.date,
  required this.language,
  required this.identifiers,
  required this.uniqueIdentifierValue,
  this.rights,
  this.contributor,
  this.creator,
  this.publisher,
  this.subject,
  this.description,
});