Exemplo n.º 1
0
 public static WeatherState ReduceFetchDataResultAction(WeatherState state, FetchDataResultAction action) =>
 new WeatherState(isLoading: false, forecasts: action.Forecasts);
Exemplo n.º 2
0
 public static WeatherState ReduceFetchDataAction(WeatherState state) =>
 new WeatherState(isLoading: true, forecasts: null);