unblock method
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);
}