isIpBlocked method

bool isIpBlocked(
  1. String ip
)

Checks if the given IP address is blocked.

Returns true if the IP address is in the blocked list, otherwise false.

Implementation

bool isIpBlocked(String ip) {
  return blockedIps.contains(ip);
}