NiceAdminKpi constructor

const NiceAdminKpi({
  1. required String label,
  2. required String value,
  3. double? change,
  4. IconData? icon,
  5. Color? color,
})

Implementation

const NiceAdminKpi({
  required this.label,
  required this.value,
  this.change,
  this.icon,
  this.color,
});