hmm.. If I call this function ```` fun <T&...
# getting-started
s
hmm.. If I call this function
Copy code
`
    fun <T> fromJsonGenerics(jsonString: String ) : List<T> {
        val JSON = jacksonObjectMapper()
        val myList : List<T> = JSON.readValue(jsonString)
        return  myList
    }
`
like:
val myList2: List<Employee>  = fromJsonGenerics(jsonString)