max method

T? max()

Finds the largest value matching the query.

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

Implementation

T? max() => aggregate(Aggregation.max);