FavoritesServiceManager constructor

FavoritesServiceManager(
  1. SharedPreferences _prefs,
  2. BuildContext _context,
  3. Widget _child
)

Creates a new FavoritesServiceManager instance.

Implementation

FavoritesServiceManager(this._prefs, this._context, this._child) {
  _localService = FavoritesService(_prefs);
  _loadPodStoragePreference();
}