then method

Algorithm<T> then(
  1. Future<T> operand()?
)

Implementation

Algorithm<T> then(Future<T> Function()? operand) {
  if (operand != null) _flow.get = [...(_flow.get ?? []), operand];
  return this;
}