dataMeta method

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

All links with rel matching http://www.opengis.net/def/rel/ogc/1.0/data-meta.

OGC API - Common Part 1 (Core): "Identifies general metadata for the context (dataset or collection) that is primarily intended for consumption by machines".

Optional type and hreflang params can specify links more precisely.

Implementation

Iterable<Link> dataMeta({String? type, String? hreflang}) => byRel(
      'http://www.opengis.net/def/rel/ogc/1.0/data-meta',
      type: type,
      hreflang: hreflang,
    );