PersonRelationship constructor

const PersonRelationship({
  1. bool? director,
  2. bool? executive,
  3. bool? legalGuardian,
  4. bool? owner,
  5. double? percentOwnership,
  6. bool? representative,
  7. String? title,
})

PersonRelationship

Implementation

const PersonRelationship({
  this.director,
  this.executive,
  this.legalGuardian,
  this.owner,
  this.percentOwnership,
  this.representative,
  this.title,
});