isNull function

bool isNull(
  1. Object? node
)

Implementation

bool isNull(Object? node) {
  return node == null;
}