TodayTransactionCard constructor
const
TodayTransactionCard({
- Key? key,
- required TodayTransactionCardType type,
- TodayTransactionCardStatus status = TodayTransactionCardStatus.paid,
- required String amountTitle,
- required double amount,
- required String from,
- required String fromLink,
- required String fromTooltip,
- required Function fromOnPressed,
- String? by,
- required String to,
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,
});