hasLocalEdits method

bool hasLocalEdits()

Determines if any of the tables in the ServiceGeodatabase have unapplied edits.

Return Value: Whether any of the tables have unapplied edits.

Implementation

bool hasLocalEdits() {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ServiceGeodatabase_hasLocalEdits(
      _handle,
      errorHandler,
    );
  });
}