center property

Future<LatLng> center

Implementation

Future<LatLng> get center {
  return platform(
    android: (pool) =>
        _androidModel.getCenter().then((it) => LatLng.android(it)),
    ios: (pool) => _iosModel.get_center().then((it) => LatLng.ios(it)),
  );
}