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