isSupertypeOf<SUBTYPE> method
Returns true if T is a supertype of SUBTYPE
Implementation
bool isSupertypeOf<SUBTYPE>() => <SUBTYPE>[] is List<T>;
Returns true if T is a supertype of SUBTYPE
bool isSupertypeOf<SUBTYPE>() => <SUBTYPE>[] is List<T>;