max<T extends num> function

Aggregate<T?> max<T extends num>(
  1. Object operand, {
  2. String? as,
})

MAX over a numeric column or expression — typed like sum (integer columns decode to Aggregate<int?>).

Implementation

Aggregate<T?> max<T extends num>(Object operand, {String? as}) =>
    _numericAggregate('MAX', operand, as);