distanceRemaining property
Total distance remaining in meters along route.
Implementation
Future<double> get distanceRemaining => _methodChannel
.invokeMethod<double>(MethodChannelEvent.getDistanceRemaining)
.then<double>((dynamic result) => result);