isNotNull function

bool isNotNull(
  1. dynamic obj
)

obj != null

Implementation

bool isNotNull(dynamic obj) {
  return obj != null;
}