Invitation constructor

Invitation({
  1. String? name,
  2. String? role,
  3. Account? targetAccount,
  4. TargetLocation? targetLocation,
  5. String? targetType,
})

Implementation

Invitation({
  this.name,
  this.role,
  this.targetAccount,
  this.targetLocation,
  this.targetType,
});