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