triggerChunk method

AsyncReply<T> triggerChunk(
  1. T value
)

Implementation

AsyncReply<T> triggerChunk(T value) {
  _chunkCallbacks.forEach((x) {
    x(value);
  });

  return this;
}