Name constructor

const Name({
  1. String? prefix,
  2. String? givenName,
  3. String? surname,
  4. String? middleName,
  5. String? suffix,
  6. String? fullName,
})

Implementation

const Name(
    {this.prefix,
    this.givenName,
    this.surname,
    this.middleName,
    this.suffix,
    this.fullName});