NiceComparisonCard constructor

const NiceComparisonCard({
  1. Key? key,
  2. required String title,
  3. required String label1,
  4. required String value1,
  5. required String label2,
  6. required String value2,
  7. Color? color1,
  8. Color? color2,
  9. IconData? icon,
})

Implementation

const NiceComparisonCard({
  super.key,
  required this.title,
  required this.label1,
  required this.value1,
  required this.label2,
  required this.value2,
  this.color1,
  this.color2,
  this.icon,
});