operation property

EditOperation operation

The type of the feature edit.

A newly added feature will keep the EditOperation.add edit operation even if it has been updated since being added.

Implementation

EditOperation get operation {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_LocalFeatureEdit_getOperation(
        _handle, errorHandler);
  });
  return EditOperation._fromCoreValue(coreValue);
}