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