Account constructor

Account({
  1. String? accountName,
  2. String? accountNumber,
  3. String? name,
  4. OrganizationInfo? organizationInfo,
  5. String? permissionLevel,
  6. String? primaryOwner,
  7. String? role,
  8. String? type,
  9. String? verificationState,
  10. String? vettedState,
})

Implementation

Account({
  this.accountName,
  this.accountNumber,
  this.name,
  this.organizationInfo,
  this.permissionLevel,
  this.primaryOwner,
  this.role,
  this.type,
  this.verificationState,
  this.vettedState,
});