RxCallback constructor
const
RxCallback({
- Key? key,
- required Widget child,
- List<
RxDisposer> effects = const [],
Used to assign effect functions that will react to the reactivity of the declared rxNotifier, similar to the rxObserver function.
Implementation
const RxCallback({
super.key,
required this.child,
this.effects = const [],
});