stopType property
Stop's type.
Default value that will be returned on error is StopType.stop.
Implementation
StopType get stopType {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Stop_getStopType(
_handle,
errorHandler,
);
});
return StopType._fromCoreValue(
coreValue,
);
}
Implementation
set stopType(StopType value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_Stop_setStopType(
_handle,
value.coreValue,
errorHandler,
);
});
}