NiceDrillDownItem constructor

const NiceDrillDownItem({
  1. required String label,
  2. required double value,
  3. Color? color,
  4. List<NiceDrillDownItem> children = const [],
})

Implementation

const NiceDrillDownItem({
  required this.label,
  required this.value,
  this.color,
  this.children = const [],
});