SmallChartCard constructor

const SmallChartCard({
  1. Key? key,
  2. required String title,
  3. required String value,
  4. required String svgPath,
  5. required Color backgroundColor,
  6. Widget? widget,
})

Implementation

const SmallChartCard({
  super.key,
  required this.title,
  required this.value,
  required this.svgPath,
  required this.backgroundColor,
  this.widget,
});