executeAsFlow

suspend fun <T : Any> Query<T>.executeAsFlow(): Flow<T>

Workaround suspending method to use with SQLite3 async driver. Use this instead of non-async method Query.executeAsList.

Return

The result set of the underlying SQL statement as a list of RowType.