reduce method
The method that returns the new state.
Implementation
@override
ActionState reduce() {
final parsedActions = parseActionMap(
raw: actions,
actionPath: '',
);
return state.copyWith(actions: parsedActions);
}
The method that returns the new state.
@override
ActionState reduce() {
final parsedActions = parseActionMap(
raw: actions,
actionPath: '',
);
return state.copyWith(actions: parsedActions);
}