AggregateRule constructor

AggregateRule({
  1. String label = 'Summe',
  2. AggregateFunction function = AggregateFunction.sum,
  3. String expression = 'total',
  4. bool bold = false,
  5. ColumnFormat format = ColumnFormat.currency,
  6. String targetColumnField = '',
})

Creates an aggregate rule.

Implementation

AggregateRule({
  this.label = 'Summe',
  this.function = AggregateFunction.sum,
  this.expression = 'total',
  this.bold = false,
  this.format = ColumnFormat.currency,
  this.targetColumnField = '',
});