actions property

ActionsT actions

The prop defined by ActionsT that holds all Actions that this component needs access to.

There is no strict rule on the ActionsT type. Depending on application structure, there may be Actions available directly on this object, or this object may represent a hierarchy of actions.

Implementation

ActionsT get actions => props[_actionsPropKey] as ActionsT;
void actions=(ActionsT value)

Implementation

set actions(ActionsT value) => props[_actionsPropKey] = value;