SummaryLine constructor

const SummaryLine(
  1. String label,
  2. double amount, {
  3. bool bold = false,
  4. ColumnFormat format = ColumnFormat.currency,
  5. String targetColumnField = '',
})

Creates an immutable summary result.

Implementation

const SummaryLine(
  this.label,
  this.amount, {
  this.bold = false,
  this.format = ColumnFormat.currency,
  this.targetColumnField = '',
});