title property

String? get title

An optional title displayed above the chart.

Implementation

String? get title => _title;
set title (String? value)

Implementation

set title(String? value) {
  if (_title == value) return;
  _title = value;
  notifyListeners();
}