clear method

void clear()

Clears all blocked countries.

This method removes all countries from the blocked list, allowing requests from any country that was previously blocked.

Implementation

void clear() {
  blocked.clear();
}