validationMessage property
dynamic
get
validationMessage
An optional validation message indicating a problem with the current input value. By returning a string, the InputBox will use a default {@link InputBoxValidationSeverity} of Error. Returning undefined clears the validation message.
Implementation
_i2.dynamic get validationMessage => _i5.getProperty(
this,
'validationMessage',
);
set
validationMessage
(dynamic value)
Implementation
set validationMessage(_i2.dynamic value) {
_i5.setProperty(
this,
'validationMessage',
value,
);
}