async getBySlug(slug: string): Promise<Collection | null> {
        return this.store.find(item => item.slug === slug) || null;
    }