typeEquality<T1, T2> function

bool typeEquality<T1, T2>()

Returns true if T1 and T2 are the same type.

Implementation

bool typeEquality<T1, T2>() => T1 == T2;