DigitInfoCard constructor

const DigitInfoCard({
  1. Key? key,
  2. required String title,
  3. required String description,
  4. TextStyle? titleStyle,
  5. Color? backgroundColor,
  6. Color? iconColor,
  7. IconData? icon,
  8. EdgeInsets? padding,
  9. EdgeInsets? margin,
  10. TextStyle? descStyle,
})

Implementation

const DigitInfoCard(
    {super.key,
    required this.title,
    required this.description,
    this.titleStyle,
    this.backgroundColor,
    this.iconColor,
    this.icon,
    this.padding,
    this.margin,
    this.descStyle});