totalTime property
Total time in minutes.
This includes any travel time, time spent waiting at stops (arriving before the start of a time window), and service time at stops.
Implementation
double get totalTime {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Route_getTotalTime(
_handle,
errorHandler,
);
});
}