inputText property

String get inputText

Implementation

String get inputText => _inputText;
  1. @Input()
set inputText (String? value)

The text the input should have.

Consider using the angular_forms NgModel instead.

Implementation

@Input()
set inputText(String? value) {
  _inputText = value ?? '';
}