(opts?: NavOptions | null, done?: TransitionDoneFn)
| 239 | */ |
| 240 | @Method() |
| 241 | pop(opts?: NavOptions | null, done?: TransitionDoneFn): Promise<boolean> { |
| 242 | return this.removeIndex(-1, 1, opts, done); |
| 243 | } |
| 244 | |
| 245 | /** |
| 246 | * Pop to a specific index in the navigation stack. |
no test coverage detected