maxAsync method

Future<String?> maxAsync()

Finds the largest value matching the query.

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

Implementation

Future<String?> maxAsync() => _withQueryAsync((q) => q.maxAsync());