addInputBytes method

  1. @override
void addInputBytes(
  1. List<int> bytes
)
override

Adds all the bytes to this stream.

Implementation

@override
void addInputBytes(List<int> bytes) {
  _controller.add(Uint8List.fromList(bytes));
}