NotNullEh function

bool NotNullEh(
  1. Object? thing
)

Mate, this thing ain't null right?

Implementation

bool NotNullEh(Object? thing) => IsNotNull(thing);