DocumentMetadata constructor

DocumentMetadata({
  1. String? refinesTo,
  2. String? property,
  3. String? value,
  4. String? id,
  5. String? scheme,
  6. String? name,
  7. String? content,
})

Creates metadata that could be either for another element or the EPUB package itself.

Implementation

DocumentMetadata({
  this.refinesTo,
  String? property,
  super.value,
  super.id,
  this.scheme,
  this.name,
  this.content,
}) : _property = property;