StandaloneAccountType constructor

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

Implementation

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