editorTrackingEnabled property

bool editorTrackingEnabled

True if editor tracking is enabled, false otherwise.

If true, the feature service will record who added or edited the data and when the edit is made. This information is stored in fields that the data owner defined when they enabled editor tracking on the feature service. You can obtain these edit field names from ArcGISFeatureLayerInfo.editFieldsInfo. For more information, see Editor tracking for feature services.

False if an error occurs.

Implementation

bool get editorTrackingEnabled {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_EditorTrackingInfo_getEditorTrackingEnabled(
        _handle, errorHandler);
  });
}