lastIndexWhere method

  1. @override
int lastIndexWhere(
  1. bool test(
    1. T element
    ), [
  2. int? start
])
override

The last index in the list that satisfies the provided test.

Searches the list from index start to 0. The first time an object o is encountered so that test(o) is true, the index of o is returned. If start is omitted, it defaults to the length of the list.

var notes = ['do', 're', 'mi', 're'];
notes.lastIndexWhere((note) => note.startsWith('r'));       // 3
notes.lastIndexWhere((note) => note.startsWith('r'), 2);    // 1

Returns -1 if element is not found.

notes.lastIndexWhere((note) => note.startsWith('k'));    // -1

Implementation

@override
int lastIndexWhere(bool test(T element), [int? start]) =>
    super.value.lastIndexWhere(test, start);