keyIsMissing method

bool keyIsMissing(
  1. String key
)

Implementation

bool keyIsMissing(String key) {
  return !_map!.containsKey(key);
}