wonders/lib/logic/unsplash_logic.dart

12 lines
436 B
Dart

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<String, List<String>> _idsByCollection = UnsplashPhotoData.photosByCollectionId;
UnsplashService get service => GetIt.I.get<UnsplashService>();
List<String>? getCollectionPhotos(String collectionId) => _idsByCollection[collectionId];
}