import 'actions.dart'; bool loadingReducer(bool isLoading, dynamic action) { if (action is FetchYourLocationsAction) return true; return isLoading; }