message property
String?
get
message
A message to write to the terminal on first launch, note that this is not sent to the process but, rather written directly to the terminal. This supports escape sequences such a setting text style.
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,
);
}