import 'package:wonders/common_libs.dart'; import 'package:wonders/logic/data/unsplash_photo_data.dart'; import 'package:wonders/logic/unsplash_service.dart'; class UnsplashLogic { final Map> _idsByCollection = UnsplashPhotoData.photosByCollectionId; UnsplashService get service => GetIt.I.get(); List? getCollectionPhotos(String collectionId) => _idsByCollection[collectionId]; }