isFull property
bool
get
isFull
Whether the session has reached its maximum capacity.
Implementation
bool get isFull => maxItems != null && _results.length >= maxItems!;
Whether the session has reached its maximum capacity.
bool get isFull => maxItems != null && _results.length >= maxItems!;