NiceAmountBreakdown constructor

const NiceAmountBreakdown({
  1. Key? key,
  2. required List<NiceAmountItem> items,
  3. String? title,
  4. String formatAmount(
    1. double
    )?,
  5. double height = 24,
  6. bool showLegend = true,
})

Implementation

const NiceAmountBreakdown({
  super.key,
  required this.items,
  this.title,
  this.formatAmount,
  this.height = 24,
  this.showLegend = true,
});