globalId property

String globalId

The global id of the row that was edited.

When returned as a result of geodatabase sync (GeodatabaseSyncTask.syncGeodatabaseWithSyncDirection then SyncGeodatabaseJob.result) in a SyncLayerResult this property may return an empty string indicating a more general error with features in this table rather than an error specific to a single feature edit.

Implementation

String get globalId {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_EditResult_getGlobalId(_handle, errorHandler);
  });
  return stringHandle.toDartString();
}