country property

Future<String> country

Implementation

Future<String> get country {
  return platform(
    android: (pool) => _androidModel.getCountry(),
    ios: (pool) =>
        _iosModel.get_addressComponent().then((it) => it.get_country()),
  );
}