locationStatus property

LocationStatus locationStatus

Location status.

Incident location's status that 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_Incident_getLocationStatus(_handle, errorHandler);
  });
  return LocationStatus._fromCoreValue(coreValue);
}