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(num value) {
if (!_isClosed) {
completer.complete(value);
streamController.close();
onClose();
}
}