SystemProviders<S, E>.value constructor

SystemProviders<S, E>.value({
  1. Key? key,
  2. required System<S, E> value,
  3. bool provideState = true,
  4. bool provideStates = false,
  5. bool provideDispatch = true,
  6. Equals<S>? stateEquals,
  7. TransitionBuilder? builder,
  8. Widget? child,
})

Implementation

SystemProviders.value({
  Key? key,
  required System<S, E> value,
  bool provideState = true,
  bool provideStates = false,
  bool provideDispatch = true,
  Equals<S>? stateEquals,
  TransitionBuilder? builder,
  Widget? child,
}) : this(
  key: key,
  create: (_) => value,
  provideState: provideState,
  provideStates: provideStates,
  provideDispatch: provideDispatch,
  stateEquals: stateEquals,
  builder: builder,
  child: child,
);