UWaterfallItem constructor

const UWaterfallItem({
  1. required double value,
  2. String? label,
  3. bool isTotal = false,
  4. Color? color,
})

Implementation

const UWaterfallItem({
  required this.value,
  this.label,
  this.isTotal = false,
  this.color,
});