skip function

void skip()

Moves the current pointer to the end of the currently open element. This prevents Incremental DOM from removing any children of the currently open element. When calling skip, there should be no calls to elementOpen (or similiar) prior to the elementClose call for the currently open element.

Implementation

void skip() => _incDom.callMethod('skip');