deleteNote

abstract suspend fun deleteNote(note: Note)

Deletes a note from the 'notes' table. The note is identified by its primary key. This is a suspend function, designed for asynchronous execution.

Parameters

note

The Note object to be deleted.