ActionsModifier constructor

const ActionsModifier({
  1. Key? key,
  2. Key? modifierKey,
  3. Widget? child,
  4. ActionDispatcher? dispatcher,
  5. required Map<Type, Action<Intent>> actions,
})

Creates an Actions widget.

The child, actions, and dispatcher arguments must not be null.

Implementation

const ActionsModifier({
  super.key,
  super.modifierKey,
  super.child,
  this.dispatcher,
  required this.actions,
});