Returns the JSON object child at the key if it exists, otherwise returns null.
key
Node? child(String key) { final v = value; if (v is Map && v.containsKey(key)) return _child(v, key); return null; }