AppHoveringNotifier constructor

const AppHoveringNotifier({
  1. required Widget builder(
    1. BuildContext,
    2. bool,
    3. Widget?
    ),
  2. ValueChanged<bool>? onHover,
  3. Widget? child,
  4. Duration duration = const Duration(milliseconds: 100),
  5. bool enabled = true,
  6. Key? key,
})

Implementation

const AppHoveringNotifier({
  required this.builder,
  this.onHover,
  this.child,
  this.duration = const Duration(milliseconds: 100),
  this.enabled = true,
  super.key,
});