StatefulWrapper constructor

const StatefulWrapper({
  1. Key? key,
  2. Future<void> onInit(
    1. BuildContext context
    )?,
  3. Future<void> onDispose()?,
  4. required Widget child,
})

Implementation

const StatefulWrapper({
  super.key,
  this.onInit,
  this.onDispose,
  required this.child,
});