Initial public commit

This commit is contained in:
Shawn
2022-08-29 20:38:28 -06:00
commit a1e1aa156f
708 changed files with 21643 additions and 0 deletions

View File

@ -0,0 +1,12 @@
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];
}