isNull function

bool isNull(
  1. dynamic obj
)

obj == null

Implementation

bool isNull(dynamic obj) {
  return obj == null;
}