()
| 98 | /** The DataSource to display. */ |
| 99 | @Input() |
| 100 | get cdkVirtualForOf(): DataSource<T> | Observable<T[]> | NgIterable<T> | null | undefined { |
| 101 | return this._cdkVirtualForOf; |
| 102 | } |
| 103 | set cdkVirtualForOf(value: DataSource<T> | Observable<T[]> | NgIterable<T> | null | undefined) { |
| 104 | this._cdkVirtualForOf = value; |
| 105 | if (isDataSource(value)) { |
nothing calls this directly
no test coverage detected