center property
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)),
);
}
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)),
);
}