ScopedValue<T> constructor
ScopedValue<T> ({})
Implementation
ScopedValue({
required T initData,
required this.builder,
bool? debug,
bool? throwOnError,
bool? autoDispose,
Where? condition,
Key? key,
}) : data = Reactable(initData),
super(
where: condition,
key: key,
debug: debug,
autoDispose: autoDispose,
throwOnError: throwOnError,
);