serviceMeta method

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

All links with rel matching service-meta.

IANA description: "Identifies general metadata for the context that is primarily intended for consumption by machines".

Optional type and hreflang params can specify links more precisely.

Implementation

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