S360fRecommendationOptionCard constructor

const S360fRecommendationOptionCard({
  1. required String title,
  2. required String description,
  3. required num amount,
  4. required String currencySymbol,
  5. required String icon,
  6. required String iconColor,
  7. required String iconBackgroundColor,
  8. String cardBackgroundColor = '#FFFFFF',
  9. String? borderColor,
  10. double? borderWidth,
  11. double? borderRadius,
  12. double? padding,
  13. double? elevation,
  14. double? marginBottom,
  15. VoidCallback? onTap,
  16. bool isSelected = false,
  17. bool isDisabled = false,
  18. List<String>? benefits,
  19. List<String>? features,
  20. Map<String, dynamic>? additionalProps,
  21. Key? key,
})

Implementation

const S360fRecommendationOptionCard({
  required this.title,
  required this.description,
  required this.amount,
  required this.currencySymbol,
  required this.icon,
  required this.iconColor,
  required this.iconBackgroundColor,
  this.cardBackgroundColor = '#FFFFFF',
  this.borderColor,
  this.borderWidth,
  this.borderRadius,
  this.padding,
  this.elevation,
  this.marginBottom,
  this.onTap,
  this.isSelected = false,
  this.isDisabled = false,
  this.benefits,
  this.features,
  this.additionalProps,
  super.key,
});