license method

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

All links with rel matching license.

IANA description: "Refers to a license associated with this context".

Optional type and hreflang params can specify links more precisely.

Implementation

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