isNull function

bool isNull(
  1. dynamic value
)

Implementation

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