RootElement constructor

RootElement({
  1. List<GedcomElement>? children,
  2. String? crlf = '\n',
})

Constructor of the FamilyElement

Implementation

RootElement({
  super.children,
  super.crlf,
}) : super(
        level: -1,
        tag: 'ROOT',
        pointer: '',
        value: '',
        parent: null,
      );