Gets whether the option is active.
()
| 63 | |
| 64 | /** Gets whether the option is active. */ |
| 65 | async isActive(): Promise<boolean> { |
| 66 | return (await this.host()).hasClass('mat-mdc-option-active'); |
| 67 | } |
| 68 | |
| 69 | /** Gets whether the option is in multiple selection mode. */ |
| 70 | async isMultiple(): Promise<boolean> { |
no test coverage detected