API Reference 0.3.24dart_web_toolkit_uiHeaderPanelScheduledCommand

HeaderPanelScheduledCommand class

class HeaderPanelScheduledCommand implements ScheduledCommand {

 HeaderPanel _panel;

 HeaderPanelScheduledCommand(this._panel);

 /**
  * Causes the Command to perform its encapsulated behavior.
  */
 void execute() {
   _panel._layoutScheduled = false;
   _panel._forceLayout();
 }
}

Implements

ScheduledCommand

Constructors

new HeaderPanelScheduledCommand(HeaderPanel _panel) #

Creates a new Object instance.

Object instances have no meaningful state, and are only useful through their identity. An Object instance is equal to itself only.

docs inherited from Object
HeaderPanelScheduledCommand(this._panel);

Methods

void execute() #

Causes the Command to perform its encapsulated behavior.

void execute() {
 _panel._layoutScheduled = false;
 _panel._forceLayout();
}