ReactiveModelImp<T> constructor
ReactiveModelImp<T> ({
- required Object? creator(),
- required T? initialState,
- required bool autoDisposeWhenNotUsed,
- required StateInterceptor<
T> ? stateInterceptorGlobal,
Implementation
ReactiveModelImp({
required this.creator,
required this.initialState,
required this.autoDisposeWhenNotUsed,
required this.stateInterceptorGlobal,
}) : super() {
resetDefaultState();
}