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