limit property
int
get
limit
Implementation
int get limit => _limit;
set
limit
(int l)
Implementation
set limit(int l) {
if (l < 10) l = 10;
_limit = l;
}