Launchpad constructor

const Launchpad({
  1. Key? key,
  2. void onEnter(
    1. PointerEnterEvent
    )?,
  3. void onHover(
    1. PointerHoverEvent
    )?,
  4. void onExit(
    1. PointerExitEvent
    )?,
  5. void onAccept(
    1. CallButton
    )?,
  6. bool onWillAccept(
    1. CallButton?
    )?,
  7. List<Widget> children = const [],
})

Implementation

const Launchpad({
  super.key,
  this.onEnter,
  this.onHover,
  this.onExit,
  this.onAccept,
  this.onWillAccept,
  this.children = const [],
});