February 2018
Intermediate to advanced
356 pages
9h 10m
English
This class represents the application token previously configured in Twitter. The token can be used for the application authentication only. Our model should look like this:
data class TwitterToken(val accessToken: String,val accessTokenSecret: String)
I love the Kotlin way to declare data classes—totally immutable and without boilerplate.