IsNotNull function

bool IsNotNull(
  1. Object? something
)

Tells if something is not null

Implementation

bool IsNotNull(Object? something) => something != null;