firstWhereOrNull method

  1. @override
Future<T?> firstWhereOrNull(
  1. bool condition(
    1. T item
    )
)

Returns the first value matching condition, or null if none found.

Implementation

@override
Future<T?> firstWhereOrNull(bool Function(T item) condition) =>
    _executeRead(() => _nativeBox.firstWhereOrNull(condition));