PersonName constructor

const PersonName({
  1. String? first,
  2. String? middle,
  3. String? last,
  4. String? prefix,
  5. String? suffix,
  6. String? formattedName,
  7. String? pronunciation,
})

Create a new PersonName instance.

Implementation

const PersonName({
  this.first,
  this.middle,
  this.last,
  this.prefix,
  this.suffix,
  this.formattedName,
  this.pronunciation,
});