location property
Implementation
Future<LatLng> get location {
return platform(
android: (pool) async =>
LatLng.android(await _androidModel?.getLatLonPoint()),
ios: (pool) async => LatLng.ios(_iosModelLocation),
);
}
Future<LatLng> get location {
return platform(
android: (pool) async =>
LatLng.android(await _androidModel?.getLatLonPoint()),
ios: (pool) async => LatLng.ios(_iosModelLocation),
);
}