commitDelete method

  1. @nonVirtual
  2. @override
Future<void> commitDelete()
override

Tries to commit the deletion of the entry.

If it has not been modified since the transaction was started, this will succeedta. If it was modified, a TransactionFailedException will be thrown instead.

Implementation

@nonVirtual
@override
Future<void> commitDelete() {
  _assertNotCommitted();
  return commitDeleteImpl();
}