sortedIndex method

int sortedIndex(
  1. dynamic value
)

sortedIndexis like indexOf but except that it performs a binary search on a sorted array. @param value the value to find the index of

Implementation

int sortedIndex(value) => array.sortedIndex(this, value);