FInheritedItemCallbacks constructor

const FInheritedItemCallbacks({
  1. required Widget child,
  2. Key? key,
  3. VoidCallback? onHoverEnter,
  4. VoidCallback? onHoverExit,
  5. VoidCallback? onPress,
  6. VoidCallback? onLongPress,
})

Implementation

const FInheritedItemCallbacks({
  required super.child,
  super.key,
  this.onHoverEnter,
  this.onHoverExit,
  this.onPress,
  this.onLongPress,
});