tryGetBy method

V? tryGetBy(
  1. bool predicate(
    1. V
    )
)

Implementation

V? tryGetBy(bool Function(V) predicate) {
	return this.values.tryGetBy(predicate);
}