bool boolOr(String key, bool dflt) { if ( members.containsKey(key) ) { VlJson v = members[key]!; if ( v.kind == 1 ) { return v.b; } } return dflt; }