API Reference 0.3.24dart_web_toolkit_uiAttachExceptionCommand

AttachExceptionCommand class

class AttachExceptionCommand implements AttachCommand {

 /**
  * The singleton command used to attach widgets.
  */
 void execute(Widget w) {
   w.onAttach();
 }
}

Implements

AttachCommand

Methods

void execute(Widget w) #

The singleton command used to attach widgets.

void execute(Widget w) {
 w.onAttach();
}