limit property

  1. @Input()
set limit (dynamic value)

How many suggestions to show.

If the limit is less than 1, it is assumed to be mean no limit. See filter method in Filterable. Defaults to 10.

Implementation

@Input()
set limit(dynamic value) {
  var newLimit = getInt(value);
  if (_limit != newLimit) {
    _limit = newLimit;
    _filterScheduled = true;
  }
}