has method

bool has(
  1. String key
)

Check if a key exists

Implementation

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