S360fPackageCardModel constructor

S360fPackageCardModel({
  1. required String id,
  2. required String title,
  3. required String description,
  4. required String imageUrl,
  5. bool isRecommended = false,
  6. String currency = 'USD',
  7. String receiveLabel = 'What You Receive',
  8. double receiveValue = 0,
  9. String payLabel = 'What You Pay',
  10. double payValue = 0,
  11. Color cardColor = Colors.white,
  12. Color selectedBorderColor = Colors.blue,
  13. String bottomActionLabel = 'View Benefits',
  14. bool showBottomAction = false,
  15. Object? packageIcon,
})

Implementation

S360fPackageCardModel({
  required this.id,
  required this.title,
  required this.description,
  required this.imageUrl,

  this.isRecommended = false,
  this.currency = 'USD',
  this.receiveLabel = 'What You Receive',
  this.receiveValue = 0,
  this.payLabel = 'What You Pay',
  this.payValue = 0,
  this.cardColor = Colors.white,
  this.selectedBorderColor = Colors.blue,
  this.bottomActionLabel = 'View Benefits',
  this.showBottomAction = false,
  this.packageIcon,
});