IsNull function

bool IsNull(
  1. Object? something
)

Tells if something is null

Implementation

bool IsNull(Object? something) => something == null;