describedBy method

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

All links with rel matching describedBy.

IANA description: "Refers to a resource providing information about the link's context".

Optional type and hreflang params can specify links more precisely.

Implementation

Iterable<Link> describedBy({String? type, String? hreflang}) =>
    byRel('describedBy', type: type, hreflang: hreflang);