duration property

double duration

Duration in minutes.

The time this segment of the route will take to traverse.

Implementation

double get duration {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_DirectionManeuver_getDuration(
      _handle,
      errorHandler,
    );
  });
}