PlanData constructor
PlanData({
- required int id,
- required String? iconDark,
- required String? iconLight,
- required String? backPhoto,
- required String? name,
- required String? primaryTagLine,
- required String? secondaryTagLine,
- required int? durationInMonths,
- required double? amount,
- required double? insuranceFee,
- required double? cover,
- required String? note,
- required int? type,
- required String? typeText,
- required int? status,
- required String? statusText,
- required int? waitingPeriodInDays,
- required List<
String> planOfferings, - required List<
String> planExclusions, - required List<
String> planBenefits, - required String? timeCreated,
- required String? timeUpdated,
- required int? totalSubscribers,
- required int? activeSubscribers,
- required double? referralBonus,
Implementation
PlanData({
required this.id,
required this.iconDark,
required this.iconLight,
required this.backPhoto,
required this.name,
required this.primaryTagLine,
required this.secondaryTagLine,
required this.durationInMonths,
required this.amount,
required this.insuranceFee,
required this.cover,
required this.note,
required this.type,
required this.typeText,
required this.status,
required this.statusText,
required this.waitingPeriodInDays,
required this.planOfferings,
required this.planExclusions,
required this.planBenefits,
required this.timeCreated,
required this.timeUpdated,
required this.totalSubscribers,
required this.activeSubscribers,
required this.referralBonus,
});