I realized that I need to create a function that c...
# android
a
I realized that I need to create a function that converts one to the other…
Copy code
fun createUser(from: CurrentUserResponse): User = User(
            from.userID,
            from.userName...
        )
Which made it work.