rows property

int get rows

Implementation

int get rows => _rows;
  1. @Input()
set rows (dynamic value)

How many rows the multiline input should have.

Can either be an integer, or a string.

Implementation

@Input()
set rows(dynamic value) {
  _rows = getInt(value);
  _changeDetector.markForCheck();
}