Returns true if the reactive map contains key and its value is not null.
key
Example:
if (settings.has('theme')) { ... }
bool has(String key) => value.containsKey(key) && value[key] != null;