Where a radio indicator is shown at the given position.
(position: MatListOptionTogglePosition)
| 232 | |
| 233 | /** Where a radio indicator is shown at the given position. */ |
| 234 | _hasRadioAt(position: MatListOptionTogglePosition): boolean { |
| 235 | return ( |
| 236 | !this._selectionList.multiple && |
| 237 | this._getTogglePosition() === position && |
| 238 | !this._selectionList.hideSingleSelectionIndicator |
| 239 | ); |
| 240 | } |
| 241 | |
| 242 | /** Whether icons or avatars are shown at the given position. */ |
| 243 | _hasIconsOrAvatarsAt(position: 'before' | 'after'): boolean { |
no test coverage detected