BoolSetter sends bool request
(param string)
| 216 | |
| 217 | // BoolSetter sends bool request |
| 218 | func (p *Javascript) BoolSetter(param string) (func(bool) error, error) { |
| 219 | return func(val bool) error { |
| 220 | return p.handleSetter(param, val) |
| 221 | }, nil |
| 222 | } |
nothing calls this directly
no test coverage detected