setActions method

void setActions(
  1. List<NrButtonWidget> actions
)

Sets the actions for the navigation rail.

The actions parameter should be a list of NrButtonWidget widgets.

Implementation

void setActions(List<NrButtonWidget> actions) {
  _navRailKey.currentState?.setActions(actions);
}