getAllEntries method

List<KdbxEntry> getAllEntries()

Returns all entries of this group and all sub groups.

Implementation

List<KdbxEntry> getAllEntries() =>
    getAllGroups().expand((g) => g.entries).toList(growable: false);