curbApproach property

CurbApproach curbApproach

Point barrier's curb approach.

The curb approach.

Implementation

CurbApproach get curbApproach {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_PointBarrier_getCurbApproach(
      _handle,
      errorHandler,
    );
  });
  return CurbApproach._fromCoreValue(
    coreValue,
  );
}
void curbApproach=(CurbApproach value)

Implementation

set curbApproach(CurbApproach value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_PointBarrier_setCurbApproach(
      _handle,
      value.coreValue,
      errorHandler,
    );
  });
}