reload method
Implementation
@mustCallSuper
Future<void> reload({bool keepOffset = false, bool keepSelection = false}) async {
if (!keepOffset) {
_currentPage = 0;
_items = [];
_maxItems = null;
}
if (!keepSelection) {
_selectedItems = [];
}
}