Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

test

import 'dart:async';

void main() {
  
  print("Program started");
  int elapsedTime = 0;
  Timer tmr = Timer(new Duration(seconds: 1), () {
    print('elapsedTime: $elapsedTime');
    elapsedTime += 1;
  });
  
 

  //if (elapsedTime <= 15) {

    //tmr.run();
 // }
while(tmr.isActive && elapsedTime == 0);
  print("Program Ended");

  
  
}

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.