getAvailableCountry static method

List<String> getAvailableCountry()

Return an array of country names that this copy of ilib knows about.

Implementation

static List<String> getAvailableCountry() {
  const String jscode = 'Country.getAvailableCountry().toString()';
  final String result = ILibJS.instance.evaluate(jscode).stringResult;

  return result.split(',');
}