typeEquality<T1, T2> function

bool typeEquality<T1, T2>()

Returns true if T1 and T2 are the same type.

Implementation

@pragma('vm:prefer-inline')
bool typeEquality<T1, T2>() => T1 == T2;