refresh method

void refresh()

Refresh the future - re-executes if factory is available, otherwise restarts current future

Implementation

void refresh() {
  final result = tryRefresh();
  if (result.isFailure) {
    RxLogger.logError(result.errorOrNull!,
        context: 'Future'); // coverage:ignore-line
  }
}