LinkReference constructor

LinkReference(
  1. String label,
  2. String destination,
  3. String? title
)

Construct a new LinkReference, with all necessary fields.

If the parsed link reference definition does not include a title, use null for the title parameter.

Implementation

LinkReference(this.label, this.destination, this.title);