StandaloneAccountType constructor

StandaloneAccountType({
  1. String? depository,
  2. String? credit,
  3. String? loan,
  4. String? investment,
  5. String? other,
})

Implementation

StandaloneAccountType({
  this.depository,
  this.credit,
  this.loan,
  this.investment,
  this.other,
});