to property

Future<LatLng> to

Implementation

Future<LatLng> get to {
  return platform(
    android: (pool) async =>
        LatLng.android(await _androidModel.getDestination()),
    ios: (pool) async => LatLng.ios(await _iosModel.get_destination()),
  );
}