pause static method

dynamic pause(
  1. int seconds
)

Implementation

static pause(int seconds) {
  sleep(Duration(seconds: seconds));
}