RelativeName constructor

RelativeName({
  1. required String? father,
  2. required String? mother,
  3. required String? spouse,
})

Implementation

RelativeName({
  required this.father,
  required this.mother,
  required this.spouse
});