Actions constructor Null safety
Creates an Actions widget.
The child, actions, and dispatcher arguments must not be null.
Implementation
const Actions({
Key? key,
this.dispatcher,
required this.actions,
required this.child,
}) : assert(actions != null),
assert(child != null),
super(key: key);