isNullOrUndefined function

bool isNullOrUndefined(
  1. dynamic value
)

Checks if the value is null or undefined

Implementation

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