withAsync method

StrategyBuilder withAsync(
  1. AsyncFunc<T> asyncBloc
)

Implementation

StrategyBuilder withAsync(AsyncFunc<T> asyncBloc) {
  _asyncFunc = asyncBloc;
  return this;
}