title property

String title

Implementation

String get title => _getAttribute<String>(kTitle, '');
void title=(String? x)

pass null to remove key from attributes

Implementation

set title(String? x) =>
    (x == null) ? _attributes.remove(kTitle) : _attributes[kTitle] = x;