Checks if the given IP address is blocked.
Returns true if the IP address is in the blocked list, otherwise false.
true
false
bool isIpBlocked(String ip) { return blockedIps.contains(ip); }