directionsStyle property
Directions style.
A directions style. The directions setting to generate directions designed for different kind of applications.
Implementation
DirectionsStyle get directionsStyle {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_RouteParameters_getDirectionsStyle(
_handle,
errorHandler,
);
});
return DirectionsStyle._fromCoreValue(
coreValue,
);
}
Implementation
set directionsStyle(DirectionsStyle value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_RouteParameters_setDirectionsStyle(
_handle,
value.coreValue,
errorHandler,
);
});
}