maxRows property

int get maxRows

Implementation

int get maxRows => _maxRows;
  1. @Input.new()
set maxRows (dynamic value)

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();
}