Checks if every key is in json object
auto json = parseJsonString(`{"a":"b", "c":{"d":1}, "e":["f", {"g":"h"}]}`); assert(json.hasAllKeys(["a", "c"])); assert(json.hasAllKeys(["a", "d"], true));
See Implementation
Checks if every key is in json object