WithdrawalRequest constructor

WithdrawalRequest({
  1. String id = '',
  2. String ownerEmail = '',
  3. double appCoinsAmount = 0.0,
  4. double mxnAmount = 0.0,
  5. String bankClabe = '',
  6. WithdrawalStatus status = WithdrawalStatus.pending,
  7. int createdTime = 0,
  8. int processedTime = 0,
  9. String adminNote = '',
})

Implementation

WithdrawalRequest({
  this.id = '',
  this.ownerEmail = '',
  this.appCoinsAmount = 0.0,
  this.mxnAmount = 0.0,
  this.bankClabe = '',
  this.status = WithdrawalStatus.pending,
  this.createdTime = 0,
  this.processedTime = 0,
  this.adminNote = '',
});