getAllGroupsAndEntries method

Iterable<KdbxObject> getAllGroupsAndEntries()

Returns all groups and entries. (Including the group itself).

Implementation

Iterable<KdbxObject> getAllGroupsAndEntries() => <KdbxObject>[this]
    .followedBy(entries)
    .followedBy(groups.expand((g) => g.getAllGroupsAndEntries()));