AccountBase constructor

AccountBase({
  1. String? accountId,
  2. AccountBalance? balances,
  3. String? mask,
  4. String? name,
  5. String? officialName,
  6. AccountType? type,
  7. AccountSubtype? subtype,
  8. AccountBaseVerificationStatus? verificationStatus,
})

Implementation

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