TodayTransactionCard constructor

const TodayTransactionCard({
  1. Key? key,
  2. required TodayTransactionCardType type,
  3. TodayTransactionCardStatus status = TodayTransactionCardStatus.paid,
  4. required String amountTitle,
  5. required double amount,
  6. required String from,
  7. required String fromLink,
  8. required String fromTooltip,
  9. required Function fromOnPressed,
  10. String? by,
  11. required String to,
  12. required String footer,
  13. TodayLink? footerLink,
})

Implementation

const TodayTransactionCard({
  super.key,
  required this.type,
  this.status = TodayTransactionCardStatus.paid,
  required this.amountTitle,
  required this.amount,
  required this.from,
  required this.fromLink,
  required this.fromTooltip,
  required this.fromOnPressed,
  this.by,
  required this.to,
  required this.footer,
  this.footerLink,
});