linksWithRel method

List<Link> linksWithRel(
  1. String rel
)

Finds all Links having the given rel in the manifest's links.

Implementation

List<Link> linksWithRel(String rel) =>
    (readingOrder + resources + links).filterByRel(rel);