NiceMountedCallback constructor

const NiceMountedCallback({
  1. Key? key,
  2. required Widget child,
  3. VoidCallback? onMount,
  4. VoidCallback? onUnmount,
})

Implementation

const NiceMountedCallback({
  super.key,
  required this.child,
  this.onMount,
  this.onUnmount,
});