Name constructor

Name({
  1. String? familyName,
  2. String? fullName,
  3. String? givenName,
})

Implementation

Name({
  this.familyName,
  this.fullName,
  this.givenName,
});