Logo

Programming-Idioms

History of Idiom 45 > diff from v7 to v8

Edit summary for version 8 by :

Version 7

2015-08-20, 18:20:30

Version 8

2015-08-21, 09:14:32

Idiom #45 Pause execution for 5 seconds

Sleep for 5 seconds in current thread, before proceeding with next instructions.

Idiom #45 Pause execution for 5 seconds

Sleep for 5 seconds in current thread, before proceeding with next instructions.

Imports
import 'dart:io';
Code
sleep(const Duration(seconds: 5));
Comments bubble
sleep is only available if dart:io is available (ie. on server side)