lastOrNull method

V? lastOrNull([
  1. bool predicate(
    1. V item
    )?
])

Implementation

V? lastOrNull([ bool Function(V item)? predicate ]) {
	return this.values.lastOrNull(predicate);
}