FamilyElement constructor
FamilyElement({
- required int level,
- String? pointer,
- String? value,
- List<
GedcomElement> ? children, - GedcomElement? parent,
- String? crlf = '\n',
Constructor of the FamilyElement
Implementation
FamilyElement({
required super.level,
super.pointer,
super.value,
super.children,
super.parent,
super.crlf,
}) : super(
tag: GEDCOM_TAG_FAMILY,
);