byRel method

Iterable<Link> byRel(
  1. String rel, {
  2. String? type,
  3. String? hreflang,
})

All links matching by the given rel, and optional type and hreflang.

Implementation

Iterable<Link> byRel(String rel, {String? type, String? hreflang}) =>
    _byRelInternal(rel, type: type, hreflang: hreflang)
        .toList(growable: false);