serviceDoc method

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

All links with rel matching service-doc.

IANA description: "Identifies service documentation for the context that is primarily intended for human consumption".

Optional type and hreflang params can specify links more precisely.

Implementation

Iterable<Link> serviceDoc({String? type, String? hreflang}) =>
    byRel('service-doc', type: type, hreflang: hreflang);