TodayWalletCard constructor

const TodayWalletCard({
  1. Key? key,
  2. required double walletBalance,
  3. Function? onFundsClick,
  4. int activeMembers = 0,
  5. Function? onAddMembers,
  6. double? floatAmount,
  7. String? nextLoadDate,
  8. Function? onSetUpPAD,
})

Implementation

const TodayWalletCard({
  super.key,
  required this.walletBalance,
  this.onFundsClick,
  this.activeMembers = 0,
  this.onAddMembers,
  this.floatAmount,
  this.nextLoadDate,
  this.onSetUpPAD,
});