GoalModifyDefinitionCard constructor

const GoalModifyDefinitionCard({
  1. Key? key,
  2. required GoalModifyDefinitionCardStyle style,
  3. required double rewardAmount,
  4. required int tenure,
  5. required double rewardEmiAmount,
  6. required double depositAmount,
  7. required double depositEmiAmount,
  8. required double goalAmount,
  9. required double currentBalance,
  10. required double pendingReward,
  11. required double rewardPercent,
  12. bool showGoalAmount = true,
})

Implementation

const GoalModifyDefinitionCard({
  super.key,
  required this.style,
  required this.rewardAmount,
  required this.tenure,
  required this.rewardEmiAmount,
  required this.depositAmount,
  required this.depositEmiAmount,
  required this.goalAmount,
  required this.currentBalance,
  required this.pendingReward,
  required this.rewardPercent,
  this.showGoalAmount = true,
});