updateNote

abstract suspend fun updateNote(note: Note)

Updates an existing note in 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 with updated values.