onChunkEnd method

  1. @override
void onChunkEnd()
override

Implementation

@override
void onChunkEnd() {
  // Only call onChunkEnd on child if it's not done yet
  if (_activeChildDelegate != null && !_activeChildDelegate!.isDone) {
    _activeChildDelegate?.onChunkEnd();
  }
  // Maps don't emit chunks - they just complete with an empty map at the end
}