firstWhereOrNull method
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);
Return first element that's pass in test
or null if not found.
V? firstWhereOrNull(bool Function(V) test) =>
fn.firstWhereOrNull<V>(this, test);