hasLocalEditsSince method

bool hasLocalEditsSince({
  1. required DateTime date,
})

Checks if the geodatabase feature table has local edits since a specific date.

Parameters:

  • date — The date.

Return Value: true if it does have local edits, false otherwise.

Implementation

bool hasLocalEditsSince({
  required DateTime date,
}) {
  final coreDate = date.toArcGIS();
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_GeodatabaseFeatureTable_hasLocalEditsSince(
      _handle,
      coreDate._handle,
      errorHandler,
    );
  });
}