Manifest constructor

Manifest({
  1. List<String> context = const [],
  2. required Metadata metadata,
  3. List<Link> links = const [],
  4. List<Link> readingOrder = const [],
  5. List<Link> resources = const [],
  6. List<Link> tableOfContents = const [],
  7. Map<String, List<PublicationCollection>> subcollections = const {},
})

Implementation

Manifest(
    {this.context = const [],
    required this.metadata,
    this.links = const [],
    this.readingOrder = const [],
    this.resources = const [],
    this.tableOfContents = const [],
    this.subcollections = const {}});