clear method
void
clear()
Clears the list of blocked IP addresses.
This method removes all IP addresses from the blocked list, allowing requests from any IP address that was previously blocked.
Implementation
void clear() {
blockedIps.clear();
}