parent property

  1. @override
DartdocOption<Object?> parent
override

To avoid accessing early, call add on the option's parent before looking up unless this is a DartdocOptionRoot.

Implementation

@override
DartdocOption get parent =>
    throw UnsupportedError('Root nodes have no parent');
void parent=(DartdocOption _parent)
inherited

To avoid accessing early, call add on the option's parent before looking up unless this is a DartdocOptionRoot.

Implementation

late final DartdocOption<dynamic> parent;