routeName property
Route's name.
Implementation
String get routeName {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Stop_getRouteName(
_handle,
errorHandler,
);
});
return stringHandle.toDartString();
}
Implementation
set routeName(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_Stop_setRouteName(
_handle,
coreValue.bytes,
errorHandler,
);
});
}