item method

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

All links with rel matching item.

IANA description: "The target IRI points to a resource that is a member of the collection represented by the context IRI".

Optional type and hreflang params can specify links more precisely.

Implementation

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