This commit is contained in:
2026-07-12 04:33:48 +08:00
parent f8a90ad305
commit e7ce0f7bae
151 changed files with 2765 additions and 2947 deletions

View File

@@ -2,10 +2,10 @@ import 'package:redux/redux.dart';
import '../actions.dart';
final lastVisitReducer = combineReducers<List<int>>([
TypedReducer<List<int>, UpdateLastVisit>(_updateLastVisit)
final lastVisitReducer = combineReducers<List<int>?>([
TypedReducer<List<int>?, UpdateLastVisit>(_updateLastVisit)
]);
List<int> _updateLastVisit(List<int> lastVisit, action) {
List<int> _updateLastVisit(List<int>? lastVisit, action) {
return action.lastVisit;
}