RxCallback constructor

const RxCallback({
  1. Key? key,
  2. required Widget child,
  3. 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 [],
});