UAccountingReportResponse constructor

UAccountingReportResponse({
  1. required double totalIn,
  2. required double totalOut,
  3. required double net,
  4. required double totalWalletBalance,
  5. required int walletTxnCount,
  6. required int txnCount,
  7. required List<UAccountingBreakdownItem> incomeByType,
  8. required List<UAccountingBreakdownItem> spendingByType,
  9. required List<UAccountingBreakdownItem> gatewayByType,
  10. required List<UAccountingTimelineItem> timeline,
})

Implementation

UAccountingReportResponse({
  required this.totalIn,
  required this.totalOut,
  required this.net,
  required this.totalWalletBalance,
  required this.walletTxnCount,
  required this.txnCount,
  required this.incomeByType,
  required this.spendingByType,
  required this.gatewayByType,
  required this.timeline,
});