Returns a Future that completes after this duration.
this
Example:
await 5.seconds.delay; print('5 seconds gone'); // printed after 5 seconds
Future<void> get delay => Future.delayed(this);