UserName constructor

UserName({
  1. String? displayName,
  2. String? familyName,
  3. String? fullName,
  4. String? givenName,
})

Implementation

UserName({
  this.displayName,
  this.familyName,
  this.fullName,
  this.givenName,
});