setTimeout method

Future<bool> setTimeout(
  1. double seconds
)

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.');
}