(duration = 0)
| 350 | */ |
| 351 | @Method() |
| 352 | async scrollToBottom(duration = 0): Promise<void> { |
| 353 | const scrollEl = await this.getScrollElement(); |
| 354 | const y = scrollEl!.scrollHeight - scrollEl!.clientHeight; |
| 355 | return this.scrollToPoint(undefined, y, duration); |
| 356 | } |
| 357 | |
| 358 | /** |
| 359 | * Scroll by a specified X/Y distance in the component. |
no test coverage detected