The method is inside Presenter class. ``` private...
# arrow
s
The method is inside Presenter class.
Copy code
private fun loadPosts(val authToken: String) {
    unsafe {
        runBlocking {
            fx {
                val (posts) = mPostsApi.getPosts(authToken)
                showPosts(posts)
            }.handleError {
                IO(Main) { mView.showGenericErrorAlert() }
            }
        }
    }
}