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