wonders/lib/logic/unsplash_logic.dart

13 lines
437 B
Dart
Raw Permalink Normal View History

2022-08-29 20:38:28 -06:00
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];
}