UBankAccountResponse constructor

UBankAccountResponse({
  1. required List<int> tags,
  2. required UBaseJson jsonData,
  3. required DateTime createdAt,
  4. required List<String> adminUserIds,
  5. String? cardNumber,
  6. String? id,
  7. String? accountNumber,
  8. String? bankName,
  9. String? ownerName,
  10. String? iBanNumber,
  11. UUserResponse? creator,
  12. String? creatorId,
})

Implementation

UBankAccountResponse({
  required this.tags,
  required this.jsonData,
  required this.createdAt,
  required this.adminUserIds,
  this.cardNumber,
  this.id,
  this.accountNumber,
  this.bankName,
  this.ownerName,
  this.iBanNumber,
  this.creator,
  this.creatorId,
});