editOperation property

EditOperation editOperation

The type of the edit operation applied to the row.

Implementation

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