getDeletedNotes

abstract fun getDeletedNotes(): Flow<List<Note>>

Retrieves all soft-deleted notes from the 'notes' table. Deleted notes are those where the 'isDeleted' flag is 1 (true). The results are ordered by timestamp in descending order (newest first).

Return

A Flow emitting a list of soft-deleted Note objects.