getRef method

HRef? getRef(
  1. String name, {
  2. bool checked = true,
})

Get tag as HRef or raise UnknownNameException or ClassCastException.

Implementation

HRef? getRef(String name, {bool checked = true}) =>
    get(name, checked: checked) as HRef?;