locationStatus property
Location status.
Facility location's status can be populated by closest facility task. Default value LocationStatus.notLocated will be returned on error.
Implementation
LocationStatus get locationStatus {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Facility_getLocationStatus(_handle, errorHandler);
});
return LocationStatus._fromCoreValue(coreValue);
}