S360fPackageCardModel constructor
S360fPackageCardModel({
- required String id,
- required String title,
- required String description,
- required String imageUrl,
- bool isRecommended = false,
- String currency = 'USD',
- String receiveLabel = 'What You Receive',
- double receiveValue = 0,
- String payLabel = 'What You Pay',
- double payValue = 0,
- Color cardColor = Colors.white,
- Color selectedBorderColor = Colors.blue,
- String bottomActionLabel = 'View Benefits',
- bool showBottomAction = false,
- 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,
});