block method

void block(
  1. String country
)

Blocks a country uses country code e.g. US, IQ, CN, RU, etc..

Implementation

void block(String country) {
  blocked.add(country);
  print("[dartcore] Blocked Country: $country");
}