Adam Kirk
03/22/2019, 5:55 PMdata class CurrentUserResponse(
val currentUser: User,
val companies: List<Company>
)
and all my user info is in the User data class but my JSON string is like this
`{
“userID”: 708,
“name”: “Adam”,
“companies”: []
....
}
I get null reference on currentUser?