forceRemoteSearch method
Force a remote search even if local results exist
Implementation
void forceRemoteSearch(String query) {
_currentQuery = query;
// Cancel previous timer if exists
if (_debounceTimer?.isActive ?? false) {
_debounceTimer!.cancel();
}
// Perform remote search immediately
_performRemoteSearch(query);
}