isFull property

bool get isFull

Whether the session has reached its maximum capacity.

Implementation

bool get isFull => maxItems != null && _results.length >= maxItems!;