()
| 329 | /** The message to be displayed in the tooltip */ |
| 330 | @Input('matTooltip') |
| 331 | get message(): string { |
| 332 | return this._message; |
| 333 | } |
| 334 | |
| 335 | set message(value: string | number | null | undefined) { |
| 336 | const oldMessage = this._message; |
nothing calls this directly
no test coverage detected