returnDirections property

bool returnDirections

Return directions status.

Implementation

bool get returnDirections {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_RouteParameters_getReturnDirections(
      _handle,
      errorHandler,
    );
  });
}
void returnDirections=(bool value)

Implementation

set returnDirections(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_RouteParameters_setReturnDirections(
      _handle,
      value,
      errorHandler,
    );
  });
}