UBankAccountCreateParams constructor

UBankAccountCreateParams({
  1. required List<int> tags,
  2. String? cardNumber,
  3. String? id,
  4. String? accountNumber,
  5. String? bankName,
  6. String? ownerName,
  7. String? iBanNumber,
  8. String? detail1,
  9. String? detail2,
  10. String? creatorId,
  11. List<String>? adminUserIds,
})

Implementation

UBankAccountCreateParams({
  required this.tags,
  this.cardNumber,
  this.id,
  this.accountNumber,
  this.bankName,
  this.ownerName,
  this.iBanNumber,
  this.detail1,
  this.detail2,
  this.creatorId,
  this.adminUserIds,
});