runLater static method

void runLater(
  1. dynamic action()
)

Implementation

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