| 101 | template <typename TString, |
| 102 | detail::enable_if_t<detail::IsString<TString>::value, int> = 0> |
| 103 | JsonVariantConst operator[](const TString& key) const { |
| 104 | return JsonVariantConst(detail::ObjectData::getMember( |
| 105 | data_, detail::adaptString(key), resources_), |
| 106 | resources_); |
| 107 | } |
| 108 | |
| 109 | // Gets the member with specified key. |
| 110 | // https://arduinojson.org/v7/api/jsonobjectconst/subscript/ |
nothing calls this directly
no test coverage detected