IsThisNull function

bool IsThisNull(
  1. Object? This
)

Tells if This is null

Implementation

bool IsThisNull(Object? This) => IsNull(This);