UserTransfer constructor

UserTransfer({
  1. required String id,
  2. required String type,
  3. double? amount,
  4. double? balance,
  5. required String description,
  6. User? user,
  7. Account? account,
  8. required String doneAt,
  9. double? moneyAmount,
  10. double? pointAmount,
  11. String? transactionId,
})

Implementation

UserTransfer({
  required this.id,
  required this.type,
  this.amount,
  this.balance,
  required this.description,
  this.user,
  this.account,
  required this.doneAt,
  this.moneyAmount,
  this.pointAmount,
  this.transactionId,
});