message property
String?
get
message
An optional human-readable message that will be rendered in the view. Setting the message to null, undefined, or empty string will remove the message from the view.
Implementation
_i2.String? get message => _i5.getProperty(
this,
'message',
);
set
message
(String? value)
Implementation
set message(_i2.String? value) {
_i5.setProperty(
this,
'message',
value ?? _i6.undefined,
);
}