execute method Null safety

Future<T> execute()

Implementation

Future<T> execute() {
  return retryEnabled ? retryHandler.retry(fn) : fn();
}