| 74 | } |
| 75 | |
| 76 | JsonString str() const { |
| 77 | ARDUINOJSON_ASSERT(node_ != nullptr); |
| 78 | node_->data[size_] = 0; |
| 79 | return JsonString(node_->data, size_); |
| 80 | } |
| 81 | |
| 82 | private: |
| 83 | ResourceManager* resources_; |
nothing calls this directly
no test coverage detected