Returns an iterator following the last key-value pair of the object. https://arduinojson.org/v7/api/jsonobject/end/
| 75 | // Returns an iterator following the last key-value pair of the object. |
| 76 | // https://arduinojson.org/v7/api/jsonobject/end/ |
| 77 | iterator end() const { |
| 78 | return iterator(); |
| 79 | } |
| 80 | |
| 81 | // Removes all the members of the object. |
| 82 | // https://arduinojson.org/v7/api/jsonobject/clear/ |