select method

Future<T?> select(
  1. bool test(
    1. T
    )
)

Implementation

Future<T?> select(bool Function(T) test) => where(test).firstOrNull;