()
| 76 | } |
| 77 | |
| 78 | _toggleCheck() { |
| 79 | this.checked = !(this.checked || false); |
| 80 | const event = new CustomEvent('change', { bubbles: true, composed: true, checked: this.checked, detail: { checked: this.checked } }); |
| 81 | this.dispatchEvent(event); |
| 82 | } |
| 83 | |
| 84 | _onDisableChange() { |
| 85 | if (this.disabled) { |
no outgoing calls
no test coverage detected