PersonNameComponents constructor

PersonNameComponents({
  1. String? namePrefix,
  2. String? givenName,
  3. String? middleName,
  4. String? familyName,
  5. String? nameSuffix,
  6. String? nickname,
  7. PersonNameComponents? phoneticRepresentation,
})

The separate parts of a person's name, allowing locale-aware formatting.

Implementation

PersonNameComponents({
  this.namePrefix,
  this.givenName,
  this.middleName,
  this.familyName,
  this.nameSuffix,
  this.nickname,
  this.phoneticRepresentation,
});