next method

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

All links with rel matching next.

IANA description: "Indicates that the link's context is a part of a series, and that the next in the series is the link target".

Optional type and hreflang params can specify links more precisely.

Implementation

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