copy method
Implementation
StreamBundle copy() {
StreamBundle copy = StreamBundle()
..isEnd = isEnd
..isError = isError
..bytesBuffer = bytesBuffer;
bytesBuffer = [];
return copy;
}
StreamBundle copy() {
StreamBundle copy = StreamBundle()
..isEnd = isEnd
..isError = isError
..bytesBuffer = bytesBuffer;
bytesBuffer = [];
return copy;
}