sayHello function

void sayHello()

Say hello

Implementation

void sayHello() {
  retry(() {
    print('hello world');
  }, retryIf: (e) => true); // retry, if there was an Exception
}