void runLater(dynamic action())

Source

static void runLater(action()) {
  Timer.run(action);
}