I have the following method where T is a particular class,
public Class<List<T>> responseClass();
While implementing this method, how should I return class of List<T>
?
I have the following method where T is a particular class,
public Class<List<T>> responseClass();
While implementing this method, how should I return class of List<T>
?