hintText property
String?
get
hintText
Implementation
String? get hintText => _hintText;
- @Input()
The hint to be shown on the input.
This text will not be displayed if there is an error message on the input.
Implementation
@Input()
set hintText(value) {
_hintText = value;
updateBottomPanelState();
}