VxState constructor
VxState({
- required VxStore store,
- required Widget? child,
- List<
VxInterceptor> interceptors = const [],
Constructor collects the store instance and interceptors.
Implementation
VxState({
required VxStore store,
required this.child,
List<VxInterceptor> interceptors = const [],
}) {
VxState._store = store;
VxState._interceptors = interceptors;
}