averageAsync method

Future<double> averageAsync()

Calculates the average of all values. This only works for numeric values.

Implementation

Future<double> averageAsync() => _withQueryAsync((q) => q.averageAsync());