title property
String?
get
title
Dialog title.
This parameter might be ignored, as not all operating systems display a title on open dialogs (for example, macOS).
Implementation
_i2.String? get title => _i5.getProperty(
this,
'title',
);
set
title
(String? value)
Implementation
set title(_i2.String? value) {
_i5.setProperty(
this,
'title',
value ?? _i6.undefined,
);
}