title property

String get title

The title text displayed in the header.

Implementation

String get title => _title;
set title (String v)

Sets the title text and invalidates the paint cache.

Implementation

set title(String v) {
  _title = v;
  _invalidateCache();
}