I have a model class
class User{
var name:String
var number:Int
}
i have the details of this downloaded as a text file with format
firstname:John
rollnumber:234
5
How can i right a custom decorder for this.
NB: the keys 'firstname' 'rollnumber' are dynamic and are obtained from backend.