AccountIdentity constructor

AccountIdentity({
  1. required List<Owner> owners,
  2. required String accountId,
  3. required AccountBalance balances,
  4. required String? mask,
  5. required String name,
  6. required String? officialName,
  7. required AccountType type,
  8. required AccountSubtype? subtype,
  9. AccountIdentityVerificationStatus? verificationStatus,
})

Implementation

AccountIdentity({
  required this.owners,
  required this.accountId,
  required this.balances,
  required this.mask,
  required this.name,
  required this.officialName,
  required this.type,
  required this.subtype,
  this.verificationStatus,
});