setTimeout method
setTimeOut sets timeout value in seconds. Used it rarely only when there some problem with offers after loading them. Returns a bool indicating that if setTimeout call is successful or not. In case of error it can also throw exceptions. ///
Implementation
Future<bool> setTimeout(double seconds) async {
throw UnimplementedError('setTimeout() has not been implemented.');
}