findGroupByUuid method

KdbxGroup findGroupByUuid(
  1. KdbxUuid? uuid
)

Implementation

KdbxGroup findGroupByUuid(KdbxUuid? uuid) =>
    body.rootGroup.getAllGroups().firstWhere((group) => group.uuid == uuid,
        orElse: (() =>
            throw StateError('Unable to find group with uuid $uuid')));