clusterReduce<T> method

T? clusterReduce<T>(
  1. dynamic property,
  2. ClusterReduceCallback<T> callback,
  3. dynamic initialValue
)

Implementation

T? clusterReduce<T>(
  dynamic property,
  meta.ClusterReduceCallback<T> callback,
  dynamic initialValue,
) {
  return meta.clusterReduce<T>(
    this,
    property,
    callback,
    initialValue,
  );
}