MiniTransactionCard constructor
MiniTransactionCard({
- Key? key,
- required String userId,
- required String currency,
- String type = "amount",
- String label = "amount",
- required String endDate,
- required String startDate,
- required String group,
- bool includePrevious = false,
- bool includeToday = false,
- String transactionType = "AMOUNT",
- String amountType = "amount",
- bool showPrevious = false,
- String previousTitle = "",
- String questionMessage = "",
- String volume = "grouped",
- bool isTransaction = false,
Implementation
MiniTransactionCard({
Key? key,
required this.userId,
required this.currency,
this.type = "amount",
this.label = "amount",
required this.endDate,
required this.startDate,
required this.group,
this.includePrevious = false,
this.includeToday = false,
this.transactionType = "AMOUNT",
this.amountType = "amount",
this.showPrevious = false,
this.previousTitle = "",
this.questionMessage = "",
this.volume = "grouped",
this.isTransaction = false,
}) : super(key: key);