complete method
value will be ignored. The stream will emit the accumulated chunks instead.
Implementation
@override
/// [value] will be ignored. The stream will emit the accumulated chunks instead.
void complete(String value) {
if (!_isClosed) {
completer.complete(_buffer);
streamController.close();
onClose();
}
}