maxAsync method

Future<T?> maxAsync()

Finds the largest value matching the query.

Yields null if there are no objects that match the query.

Implementation

Future<T?> maxAsync() => aggregateAsync(Aggregation.max);