API Reference 0.3.24dart_web_toolkit_uiDetachExceptionCommand

DetachExceptionCommand class

class DetachExceptionCommand implements AttachCommand {

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

Implements

AttachCommand

Methods

void execute(Widget w) #

The singleton command used to attach widgets.

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