name property
Facility's name.
Facility's name to be reported in driving directions.
Implementation
String get name {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Facility_getName(_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set name(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_Facility_setName(_handle, coreValue.bytes, errorHandler);
});
}