コード例 #1
0
 public static WeatherState ReduceFetchDataResultAction(WeatherState state, ActionFetchDataEffectResult action) =>
 new WeatherState(
     isLoading: false,
     forecasts: action.Forecasts);
コード例 #2
0
 public static WeatherState ReduceFetchDataAction(WeatherState state, ActionFetchData action) =>
 new WeatherState(
     isLoading: true,
     forecasts: null);