clearError method

bool clearError()

Implementation

bool clearError() {
  if (_closed) {
    throw const MutationClosedException();
  }
  return _updateError(null);
}