name property
Service area facility's name.
Service area facility's name to be reported.
Implementation
String get name {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ServiceAreaFacility_getName(_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set name(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ServiceAreaFacility_setName(
_handle, coreValue.bytes, errorHandler);
});
}