progress method

AsyncReply<T> progress(
  1. dynamic callback(
    1. ProgressType,
    2. int,
    3. int
    )
)

Implementation

AsyncReply<T> progress(Function(ProgressType, int, int) callback) {
  _progressCallbacks.add(callback);
  return this;
}