filterByRel method

List<Link> filterByRel(
  1. String rel
)

Finds all the links with the given relation.

Implementation

List<Link> filterByRel(String rel) =>
    where((it) => it.rels.contains(rel)).toList();