sortedIndexOf method

int sortedIndexOf(
  1. dynamic value, [
  2. int? fromIndex
])

sortedIndexBy is like sortedIndex except that it accepts a iteratee for value @param value the value to find the index of @param fromIndex the index of the first element to be searched

Implementation

int sortedIndexOf(value, [int? fromIndex]) =>
    array.sortedIndexOf(this, value, fromIndex);