RecentTransactionTable constructor

RecentTransactionTable({
  1. Key? key,
  2. required String userId,
  3. required String currency,
  4. bool showRaw = false,
  5. Map<String, dynamic>? filterMap,
  6. required DateTime endDate,
  7. required DateTime startDate,
  8. required int limit,
  9. Function? routePage,
  10. Function? handleTransactionTypeDetails,
})

Implementation

RecentTransactionTable({
  Key? key,
  required this.userId,
  required this.currency,
  this.showRaw = false,
  this.filterMap,
  required this.endDate,
  required this.startDate,
  required this.limit,
  this.routePage,
  this.handleTransactionTypeDetails,
}) : super(key: key);