valueFor method

Object? valueFor(
  1. String fieldName,
  2. FdcAggregate aggregate
)

Returns the value for the fieldName and aggregate pair, or null when the adapter omitted it.

Implementation

Object? valueFor(String fieldName, FdcAggregate aggregate) =>
    values[FdcDataAggregateKey(fieldName: fieldName, aggregate: aggregate)];