lastOrNullWhere method
Returns the last element matching the given predicate, or null if no
such element was found.
Implementation
T lastOrNullWhere(bool predicate(T element)) {
return lastWhere(predicate);
}
Returns the last element matching the given predicate, or null if no
such element was found.
T lastOrNullWhere(bool predicate(T element)) {
return lastWhere(predicate);
}