service method

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

All links with rel matching service.

IANA description: "Indicates a URI that can be used to retrieve a service document".

Optional type and hreflang params can specify links more precisely.

Implementation

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