max method

Object? max(
  1. String fieldName
)

Returns the maximum non-null field value over the current flat dataset view, or null when no value is available.

Implementation

Object? max(String fieldName) =>
    _dataSet._aggregateCached(fieldName, FdcAggregate.max);