IsItNull function

bool IsItNull(
  1. Object? it
)

Tells if it is null or not

Implementation

bool IsItNull(Object? it) => IsNull(it);