UAccountingReportResponse constructor
UAccountingReportResponse({
- required double totalIn,
- required double totalOut,
- required double net,
- required double totalWalletBalance,
- required int walletTxnCount,
- required int txnCount,
- required List<
UAccountingBreakdownItem> incomeByType, - required List<
UAccountingBreakdownItem> spendingByType, - required List<
UAccountingBreakdownItem> gatewayByType, - 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,
});