max method

Future<T?> max()

Returns the maximum value of this query.

Implementation

Future<T?> max() => aggregate<T>(AggregationOp.max);