cityCode property

Future<String> cityCode

Implementation

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