run static method Null safety

void run(
  1. void callback(
      )
    )

    Runs the given callback asynchronously as soon as possible.

    This function is equivalent to new Timer(Duration.zero, callback).

    Example:

    Timer.run(() => print('timer run'));
    

    Implementation

    static void run(void Function() callback) {
      new Timer(Duration.zero, callback);
    }