PageAware constructor

const PageAware({
  1. required Widget child,
  2. Key? key,
  3. VoidCallback? onAppear,
  4. VoidCallback? onDisappear,
  5. VoidCallback? onInit,
  6. VoidCallback? onDispose,
  7. VoidCallback? onAfterFirstFrame,
  8. bool? waitForTransition,
  9. VoidCallback? onDidPush,
  10. VoidCallback? onDidPop,
})

Implementation

const PageAware({
  required this.child,
  super.key,
  this.onAppear,
  this.onDisappear,
  this.onInit,
  this.onDispose,
  this.onAfterFirstFrame,
  this.waitForTransition,
  this.onDidPush,
  this.onDidPop,
});