Name constructor

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

Implementation

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