title property
String?
get
title
Implementation
String? get title => _title;
set
title
(String? t)
Implementation
set title(String? t) {
_title = t;
dispatchChanges(KeyValue('title', _title));
}