isNotExists static method

bool isNotExists(
  1. dynamic value
)

Implementation

static bool isNotExists(dynamic value) {
  return !isExists(value);
}