title property
set
title
(String v)
Sets the title text and invalidates the paint cache.
Implementation
set title(String v) {
if (_title == v) return;
_title = v;
_invalidateCache();
markNeedsLayout();
}