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