Returns an iterator following the last key-value pair of the object. https://arduinojson.org/v7/api/jsonobjectconst/end/
| 65 | // Returns an iterator following the last key-value pair of the object. |
| 66 | // https://arduinojson.org/v7/api/jsonobjectconst/end/ |
| 67 | iterator end() const { |
| 68 | return iterator(); |
| 69 | } |
| 70 | |
| 71 | // DEPRECATED: use obj[key].is<T>() instead |
| 72 | // https://arduinojson.org/v7/api/jsonobjectconst/containskey/ |