maxAsync method

Future<DateTime?> maxAsync()

Finds the largest value matching the query.

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

Implementation

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