wait function

void wait(
  1. int s
)

Lets the program sleep for s seconds

Implementation

void wait(int s){
  sleep(Duration(seconds: s));
}