actions property

  1. @override
  2. @override
ActionsT actions
override

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

** Required **

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

@override
@override
ActionsT get actions =>
    (props[_$key__actions__FluxUiPropsMixin] ?? null) as ActionsT;
  1. @override
  2. @override
void actions=(ActionsT value)
override

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

** Required **

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

@override
@override
set actions(ActionsT value) =>
    props[_$key__actions__FluxUiPropsMixin] = value;