OrgLink constructor

OrgLink({
  1. int? contentsBegin,
  2. int? contentsEnd,
  3. required List children,
  4. required OrgLinkFormat format,
  5. required String linkType,
  6. required String rawLink,
  7. required String path,
})

Implementation

OrgLink(
    {int? contentsBegin,
    int? contentsEnd,
    required this.children,
    required this.format,
    required this.linkType,
    required this.rawLink,
    required this.path})
    : super(contentsBegin, contentsEnd);