UrlExtractUtils constructor

const UrlExtractUtils(
  1. String url, {
  2. String? label,
  3. String? snippet,
})

Creates an extracted link for url, with an optional anchor label and surrounding snippet of context.

Implementation

const UrlExtractUtils(String url, {String? label, String? snippet})
  : _url = url,
    _label = label,
    _snippet = snippet;