title property

String? get title

The optional title of the modal.

Implementation

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

Implementation

set title(String? value) {
  _title = value;
  rebuild();
}