PodFavoritesService constructor
- SharedPreferences _prefs,
- BuildContext _context,
- Widget _child
Creates a new PodFavoritesService instance.
Implementation
PodFavoritesService(this._prefs, this._context, this._child)
: _fallbackService = FavoritesService(_prefs) {
// Initialize ontology services.
_userProfileService = UserProfileService(_context, _child);
_movieListService = MovieListService(_context, _child, _userProfileService);
_initializePodData();
}