(flag: boolean)
| 794 | } |
| 795 | |
| 796 | setVisible(flag: boolean): void { |
| 797 | this.getExtraProp('hidden')?.setValue(!flag); |
| 798 | this.emitter.emit('visibleChange', flag); |
| 799 | } |
| 800 | |
| 801 | getVisible(): boolean { |
| 802 | return !this.getExtraProp('hidden')?.getValue(); |
nothing calls this directly
no test coverage detected