min method

Object? min(
  1. String fieldName
)

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

Implementation

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