maxRows property
int
get
maxRows
Implementation
int get maxRows => _maxRows;
- @Input.new()
Maximum number of lines to display.
Anything more than the maxRows will cause the input to scroll.
Implementation
@Input()
set maxRows(dynamic value) {
_maxRows = getInt(value);
_changeDetector.markForCheck();
}