Future after(Duration duration, dynamic action())

Source

static Future after(Duration duration, action()) {
  return new Future.delayed(duration, action);
}