remove method

void remove(
  1. int index
)

Remove the item at the specified index.

Parameters

  • IN index The route index to be removed.

Throws

  • An exception if it fails.

Implementation

void remove(final int index) {
  objectMethod(_pointerId, 'RouteBookmarks', 'remove', args: index);
}