()
| 11 | accessibilityRole = AccessibilityRole.Button; |
| 12 | |
| 13 | get textWrap(): boolean { |
| 14 | return this.style.whiteSpace === 'normal'; |
| 15 | } |
| 16 | set textWrap(value: boolean) { |
| 17 | if (typeof value === 'string') { |
| 18 | value = booleanConverter(value); |
nothing calls this directly
no test coverage detected