| 227 | } |
| 228 | |
| 229 | type ToggleResult struct { |
| 230 | Label string |
| 231 | Checked bool |
| 232 | onChange func(bool) |
| 233 | tree *RenderedTree |
| 234 | found bool |
| 235 | } |
| 236 | |
| 237 | func (r ToggleResult) Exists() bool { return r.found } |
| 238 |
nothing calls this directly
no outgoing calls
no test coverage detected