unblock method

void unblock(
  1. String country
)

Unblocks a country

Removes the given country from the blocked list, allowing requests from this country. If the country is not in the blocked list, this method does nothing.

Implementation

void unblock(String country) {
  blocked.remove(country);
}