lastIndexWhere abstract method

int lastIndexWhere(
  1. bool test(
    1. E element
    ), [
  2. int? start
])

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

Implementation

int lastIndexWhere(bool Function(E element) test, [int? start]);