Hi, I have a function: ``` public fun <T : Base...
# getting-started
m
Hi, I have a function:
Copy code
public fun <T : BaseEntity> Class<T>.fromJson(json: String): T {
    return Utils.getGsonInstance().fromJson(json, this)
}
and to use it I have to call it like this
Entity::class.java.fromJson(json)