isListOf<E> method

bool isListOf<E>()

Checks if T is a List of type List<E>.

Implementation

bool isListOf<E>() => isSubtypeOf<List<E>>();