firstWhereOrNull method

V? firstWhereOrNull(
  1. bool test(
    1. V
    )
)

Return first element that's pass in test or null if not found.

Implementation

V? firstWhereOrNull(bool Function(V) test) =>
    fn.firstWhereOrNull<V>(this, test);