description property
Travel mode's description.
A short text description of the travel mode.
Implementation
String get description {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_TravelMode_getDescription(_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set description(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_TravelMode_setDescription(
_handle, coreValue.bytes, errorHandler);
});
}