maneuverType property

DirectionManeuverType maneuverType

Maneuver type.

The maneuver used to perform this direction (E.g. Depart, Go Straight, etc).

Implementation

DirectionManeuverType get maneuverType {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_DirectionManeuver_getManeuverType(
      _handle,
      errorHandler,
    );
  });
  return DirectionManeuverType._fromCoreValue(
    coreValue,
  );
}