GrowthCard constructor

const GrowthCard({
  1. Key? key,
  2. required String label,
  3. required double percent,
  4. required Color color,
  5. required IconData icon,
})

Implementation

const GrowthCard({super.key, required this.label, required this.percent, required this.color, required this.icon});