I want to create POJO class for Kotlin, as we know that www.jsonschema2pojo.org converts JSON to POJO so we can use it with gson.
Anyone know how to create Gson POJO for
This is the simple way
and Paste this code, This is you POJO/Model class
class Model {
var uid: String? = null
var name: String? = null
}
val model=Model()
model.name="Sunil"
Log.e("Model after",model.name)