findGroupByID(id: GroupID): Group | null {
        return (
            getAllChildGroups(this.vault._groups, this.id).find((group) => group.id === id) || null
        );
    }