PanelBehavior constructor

PanelBehavior({
  1. bool? openPanelOnActionClick,
})

Implementation

PanelBehavior(
    {
    /// Whether clicking the extension's icon will toggle showing the
    /// extension's
    /// entry in the side panel. Defaults to false.
    bool? openPanelOnActionClick})
    : _wrapped =
          $js.PanelBehavior(openPanelOnActionClick: openPanelOnActionClick);