addChunk method
Implementation
void addChunk(String chunk) {
if (!_isClosed) {
_buffer += chunk;
streamController.add(chunk);
}
}
void addChunk(String chunk) {
if (!_isClosed) {
_buffer += chunk;
streamController.add(chunk);
}
}