``` val savedComments = savedInstanceState?.getPar...
# getting-started
r
Copy code
val savedComments = savedInstanceState?.getParcelableArrayList<Comment>("comments")
if (savedComments != null) {
    gotComments(savedComments)
} else {
    service.getComments(post.id, account?.name)
}