UserTransactionWithFallback constructor
UserTransactionWithFallback({
- required String id,
- required User user,
- required double balance,
- required double amount,
- required double moneyAmount,
- required double pointAmount,
- double? rawPointAmount,
- double? campaignPointAmount,
- required Account account,
- required String description,
- required DateTime doneAt,
- required String type,
- required bool isModified,
- required List<
UserTransferWithoutAccount> transfers, - List<
UserTransactionWithTransfers> ? fallbackTransactions,
Implementation
UserTransactionWithFallback({
required this.id,
required this.user,
required this.balance,
required this.amount,
required this.moneyAmount,
required this.pointAmount,
this.rawPointAmount,
this.campaignPointAmount,
required this.account,
required this.description,
required this.doneAt,
required this.type,
required this.isModified,
required this.transfers,
this.fallbackTransactions,
});