| 14 | static const size_t typeSortKey = 1; |
| 15 | |
| 16 | FlashString(const __FlashStringHelper* str, size_t sz) |
| 17 | : str_(reinterpret_cast<const char*>(str)), size_(sz) {} |
| 18 | |
| 19 | bool isNull() const { |
| 20 | return !str_; |
nothing calls this directly
no outgoing calls
no test coverage detected