Reducer<State, Action, Environment>.empty constructor
Reducer<State, Action, Environment>.empty ()
Creates a no-op reducer that returns the state unchanged and emits no effects.
Implementation
factory Reducer.empty() => Reducer(
reduce: (state, action, env) => (
state: state,
effect: Effect.none(),
),
);