UserTransaction constructor

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

Implementation

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