minAsync method

Future<String?> minAsync()

Finds the smallest value matching the query. Null values are considered smaller than all other values.

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

Implementation

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