isSubnetBlocked method

bool isSubnetBlocked(
  1. String subnet
)

IsSubnetBlocked returns whether a subnet is blocked

Implementation

bool isSubnetBlocked(String subnet) {
  return _blockedSubnets.contains(subnet);
}