QueryStringAggregation<T extends String?> extension

Aggregation operations for string queries.

on

Methods

max() → T?
Finds the largest value matching the query.
maxAsync() Future<T?>
Finds the largest value matching the query.
min() → T?
Finds the smallest value matching the query. Null values are considered smaller than all other values.
minAsync() Future<T?>
Finds the smallest value matching the query. Null values are considered smaller than all other values.