Timer(Duration(seconds: 3), () {
print("Yeah, this line is printed after 3 second");
});
print('This line is printed first');
Copied!
final timer = Timer(
const Duration(seconds: 3),
() {
// Navigate to your favorite place
},
);
final timer = Timer(
const Duration(seconds: 3),
() {
// Navigate to your favorite place
},
);