| 135 | void set_text(const fl::string& body) { mBody = body; } // Backward compatibility |
| 136 | void set_body(const fl::string& body) { mBody = body; } |
| 137 | void set_header(const fl::string& name, const fl::string& value) { |
| 138 | mHeaders[name] = value; |
| 139 | } |
| 140 | |
| 141 | private: |
| 142 | int mStatusCode; |
no outgoing calls
no test coverage detected