```class RickMortyApi(private val service: RickMor...
# arrow
c
Copy code
class RickMortyApi(private val service: RickMortyService) {
    val allCharacter: Remote<CharacterList>
        get() =
            service.getAllCharacters()
                .async(IO.async())
                .fix()
}