lastIndexWhere method
The last index in the list that satisfies the provided test
.
Implementation
@override
int lastIndexWhere(bool Function(E element) test, [int? start]) {
return _collective.lastIndexWhere(test, start);
}
The last index in the list that satisfies the provided test
.
@override
int lastIndexWhere(bool Function(E element) test, [int? start]) {
return _collective.lastIndexWhere(test, start);
}