MiniTransactionCard constructor

MiniTransactionCard({
  1. Key? key,
  2. required String userId,
  3. required String currency,
  4. String type = "amount",
  5. String label = "amount",
  6. required String endDate,
  7. required String startDate,
  8. required String group,
  9. bool includePrevious = false,
  10. bool includeToday = false,
  11. String transactionType = "AMOUNT",
  12. String amountType = "amount",
  13. bool showPrevious = false,
  14. String previousTitle = "",
  15. String questionMessage = "",
  16. String volume = "grouped",
  17. 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);