PersonsRelationship constructor

const PersonsRelationship({
  1. bool? director,
  2. bool? executive,
  3. bool? legalGuardian,
  4. bool? owner,
  5. bool? representative,
})

all_people_relationship_specs

Implementation

const PersonsRelationship({
  this.director,
  this.executive,
  this.legalGuardian,
  this.owner,
  this.representative,
});