hyperlink function

String hyperlink(
  1. String content,
  2. String url, [
  3. String? title
])

Format the content and the URL into a hyperlink (aka Markdown link), and optionally, add a title that will be displayed on hover.

Implementation

String hyperlink(String content, String url, [String? title]) => '[$content](<$url>${title != null ? ' "$title"' : ''})';