I am using gson library that has function `fromJso...
# language-proposals
d
I am using gson library that has function
fromJson(String json, Class<T> classOfT)
, fortunately I could use alternatively
fromJson(String json, Type typeOfT)
and create type like this
val mutableType = object : TypeToken<MutableList<String>>() {}.type