I have a question about the interpretation of the following sentences.
Does this mean it's a good practice to use withContext{} in all functions, even if there is no blocking process in the Repository?
A good practice is to use
withContext()
to make sure every function is main-safe, which means that you can call the function from the main thread.