ReactiveModelImp<T> constructor

ReactiveModelImp<T>({
  1. required Object? creator(),
  2. required T? initialState,
  3. required bool autoDisposeWhenNotUsed,
  4. required StateInterceptor<T>? stateInterceptorGlobal,
})

Implementation

ReactiveModelImp({
  required this.creator,
  required this.initialState,
  required this.autoDisposeWhenNotUsed,
  required this.stateInterceptorGlobal,
}) : super() {
  resetDefaultState();
}