Actions constructor

const Actions({
  1. Key? key,
  2. required Map<Type, Action<Intent>> actions,
  3. required Widget child,
})

Creates an Actions widget with the given actions map.

Implementation

const Actions({super.key, required this.actions, required this.child});