IndividualName constructor

IndividualName({
  1. String? surname,
  2. String? firstName,
  3. String? patronymic,
})

Implementation

IndividualName({
  this.surname,
  this.firstName,
  this.patronymic,
});