()
| 13 | nativeTextViewProtected: org.nativescript.widgets.StyleableTextView; |
| 14 | |
| 15 | get textWrap(): boolean { |
| 16 | return this.style.whiteSpace === 'normal'; |
| 17 | } |
| 18 | set textWrap(value: boolean) { |
| 19 | if (typeof value === 'string') { |
| 20 | value = booleanConverter(value); |
nothing calls this directly
no test coverage detected