As mmcdon20 commented, you should use await Future.delayed(Duration(seconds: 1));.
await Future.delayed(Duration(seconds: 1));
Here, delayed() is a static method, so it more or less fits the procedural paradigm.
delayed()