RxLifecycle constructor

const RxLifecycle({
  1. Key? key,
  2. required Widget child,
  3. VoidCallback? onDispose,
})

Implementation

const RxLifecycle({
  Key? key,
  required this.child,
  this.onDispose,
}) : super(key: key);