next method

AsyncReply<T> next(
  1. dynamic callback(
    1. T
    )
)

Implementation

AsyncReply<T> next(Function(T) callback) {
  then(callback);
  return this;
}