AccountRelationship constructor

const AccountRelationship({
  1. bool? director,
  2. bool? executive,
  3. bool? owner,
  4. double? percentOwnership,
  5. String? title,
})

individual_relationship_specs

Describes the person’s relationship to the account.

Implementation

const AccountRelationship({
  this.director,
  this.executive,
  this.owner,
  this.percentOwnership,
  this.title,
});