UBankAccountUpdateParams constructor

UBankAccountUpdateParams({
  1. required String id,
  2. List<int>? addTags,
  3. List<int>? removeTags,
  4. List<int>? tags,
  5. String? cardNumber,
  6. String? accountNumber,
  7. String? iBanNumber,
  8. String? bankName,
  9. String? ownerName,
  10. String? detail1,
  11. String? detail2,
  12. List<String>? adminUserIds,
  13. List<String>? addAdminUserIds,
  14. List<String>? removeAdminUserIds,
})

Implementation

UBankAccountUpdateParams({
  required this.id,
  this.addTags,
  this.removeTags,
  this.tags,
  this.cardNumber,
  this.accountNumber,
  this.iBanNumber,
  this.bankName,
  this.ownerName,
  this.detail1,
  this.detail2,
  this.adminUserIds,
  this.addAdminUserIds,
  this.removeAdminUserIds,
});