title property

  1. @override
String? title

Represents advisory information about the element.

Implementation

@override
String? get title =>
    (props[_$key__title___$UbiquitousDomPropsMixin] ?? null) as String?;
  1. @override
void title=(String? value)

Represents advisory information about the element.

Implementation

@override
set title(String? value) =>
    props[_$key__title___$UbiquitousDomPropsMixin] = value;