setSecondaryActions method

void setSecondaryActions(
  1. List<NrButtonWidget> actions
)

Sets the secondary actions for the navigation rail.

The actions parameter should be a list of NrButtonWidget widgets.

Implementation

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