firstOrNull method

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

Implementation

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