indexOfItem method

int indexOfItem(
  1. dynamic item
)

The index of the specified item

Implementation

int indexOfItem(dynamic item) {
  return _rootController!.indexOfItem(item);
}