user
06/29/2022, 8:11 PMCall
if (Call::class.java != getRawType(returnType)) {
return null
}
...
}
If returnType is null, Utils.getRawType will throw NullPointerException. How I can make retrofit to return me WildcardType or any other expected by method getRawType type that...