isNullable<T> function

bool isNullable<T>()

Returns true if T is nullable.

Implementation

bool isNullable<T>() => null is T;