UserTransactionWithTransfers constructor

UserTransactionWithTransfers({
  1. required String id,
  2. required String type,
  3. required bool isModified,
  4. required User user,
  5. double? balance,
  6. double? amount,
  7. double? moneyAmount,
  8. double? pointAmount,
  9. required Account account,
  10. required String description,
  11. required String doneAt,
  12. List<UserTransferWithoutAccount>? transfers,
})

Implementation

UserTransactionWithTransfers({
  required this.id,
  required this.type,
  required this.isModified,
  required this.user,
  this.balance,
  this.amount,
  this.moneyAmount,
  this.pointAmount,
  required this.account,
  required this.description,
  required this.doneAt,
  this.transfers,
});