undoLocalEdits method

Future<void> undoLocalEdits()

Undos all of the local edits in all the tables.

Return Value: A Future that has no value.

Implementation

Future<void> undoLocalEdits() {
  final taskHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ServiceGeodatabase_undoLocalEditsAsync(
      _handle,
      errorHandler,
    );
  });
  return taskHandle.toFuture(
    (_) {},
  );
}